The dataset in on WeRateDogs. WeRateDogs is a Twitter account that rates people's dogs with a humorous comment about the dog. These ratings almost always have a denominator of 10. The numerators, though? Almost always greater than 10. 11/10, 12/10, 13/10, etc. Why? Because "they're good dogs Brent." WeRateDogs has over 4 million followers and has received international media coverage.
Three different dataset are used1. Enhanced Twitter Archive¶
The WeRateDogs Twitter archive contains basic tweet data for all 5000+ of their tweets, but not everything. One column the archive does contain though: each tweet's text, which I used to extract rating, dog name, and dog "stage" (i.e. doggo, floofer, pupper, and puppo) to make this Twitter archive "enhanced."
Used twitter api to scrape on each twet_Id on the Enhanced Twitter Archive to get retweet count and favourite count of each tweet id.
3. The tweet image predictions¶
A table full of image predictions (the top three only) alongside each tweet ID, image URL, and the image number that corresponded to the most confident prediction (numbered 1 to 4 since tweets can have up to four images).Used request library to download the dataset from udacity using this url[https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv]
import tweepy
import json
import pandas as pd
import numpy as np
from timeit import default_timer as timer
import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
sns.set_style("darkgrid")
# settings to display all columns
pd.set_option("display.max_columns", None)
pd.set_option('display.max_rows', None) # or 1000
# Variables that contains the credentials to access Twitter API
ACCESS_TOKEN = 'xxxxxxxxxx'
ACCESS_SECRET = 'xxxxxxxxx'
CONSUMER_KEY = 'xxxxxxxxx'
CONSUMER_SECRET = 'xxxxxxxxx'
# Setup access to API
def connect_to_twitter_OAuth():
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_TOKEN, ACCESS_SECRET)
api = tweepy.API(auth)
return api
# Create API object
api = connect_to_twitter_OAuth()
# tweets from my stream
public_tweets = api.home_timeline()
for tweet in public_tweets:
print(tweet.text)
Crypto hackers are increasingly phishing for new bait on social media https://t.co/5G6O7mnE8y by @jacqmelinek RT @hackathorn: #DeepLearning depends on the inherent geometry within low-dimensional structures reflecting physical reality. If you agree,… Tesla reportedly nowhere near goal of installing 1,000 solar roofs a week https://t.co/wkFxABkrUB by @harrisonweber Brendan Artley outlines an introduction to the mathematics behind neural networks. https://t.co/hsBiCg1lAy Instacart's new rewards program gives shoppers exclusive early access to orders and more https://t.co/nWMYKmZrYQ by @aiishamalik1 US safety regulators open special investigation into Cruise AV crash https://t.co/ZdBF7Vxw3f by @kirstenkorosec Amazon bets on influencers to drive sales for Prime Day https://t.co/jV2QmnZbrC by @laurenforristal Levered up, doubled down https://t.co/jOBs3vpmeA by @anitaramaswamy and @lucasmtny Former Theranos exec Sunny Balwani is found guilty https://t.co/kauGx9swUx by @asilbwrites Pitch Deck Teardown: Enduring Planet's $2.1M seed deck https://t.co/5QcUvMZCv1 by @Haje An accusation of academic misconduct by Prof. Yisen Wang (Peking University) in ICML2021 and NeurIPS2021 https://t.co/JXAoXS8fZt Knee deep in the hoopla https://t.co/ceUTQaMWRz by @bheater "At some point in the last two decades, the size of our data became inextricably linked to our ego."… https://t.co/sQwRLCt2rz Feds must step in or renewable energy will have nowhere to go, says MIT report https://t.co/04EcqHVUEK | by Devin Coldewey ✅ Protect and secure data ✅ Adhere to local data residency laws ✅ Ease data management and recovery A few of the be… https://t.co/ldBHu4WupT One billion Chinese resident records were allegedly siphoned from a police database in a huge data leak that expose… https://t.co/uYBcNHPs0q There’s more to advancing FOSS development than professionalization, says @mhashemi. Funding is fundamental, but co… https://t.co/EJI96qUR3M Roe reversal weighs heavily on emerging tech cities in red states https://t.co/uDyLwg20p4 by @dominicmadori and @rebecca_szkutak Meta's next VR headset might be called the Quest Pro https://t.co/CBMKjXjUd9 by @asilbwrites RT @zackwhittaker: New: An alleged leak of 1 billion records from a Shanghai police database could be one of the biggest data breaches in h…
archive_df = pd.read_csv('twitter-archive-enhanced.csv')
archive_df.head()
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phineas. He's a mystical boy. Only eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tilly. She's just checking pup on you.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He is a rare Norwegian Pouncin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Darla. She commenced a snooze mid meal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Franklin. He would like you to stop ca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | None | None | None | None |
archive_df.shape
(2356, 17)
# the ID of the status
id = 891815181378084864
# fetching the status
status = api.get_status(id)
# fetching the retweet_count attribute
retweet_count = status.retweet_count
print("The number of time the status has been retweeted is : " + str(retweet_count))
The number of time the status has been retweeted is : 3477
for i in archive_df['tweet_id']:
#tweet_id = data['tweet_id']
# fetching the status
status = api.get_status(i)
# fetching the retweet_count attribute
retweet_count = status.retweet_count
print(i)
print(retweet_count)
likes = status.favorite_count
print(likes)
data_collected ={
'tweet_id': i,
'retweet_count': retweet_count,
'likes': likes
}
break
892420643555336193 7001 33801
# Query Twitter's API for JSON data for each tweet ID in the Twitter archive
count = 0
fails_dict = {}
start = timer()
missing_tweets = []
# Save each tweet's returned JSON as a new line in a .txt file
with open('tweet_json.txt', 'w') as outfile:
# This loop will likely take 20-30 min to run
for tweet_id in archive_df['tweet_id']:
count += 1
print(str(count) + ": " + str(tweet_id))
try:
tweet = api.get_status(tweet_id, tweet_mode = 'extended',
wait_on_rate_limit = True,
wait_on_rate_limit_notify = True)
print("Success")
json.dump(tweet._json, outfile)
outfile.write('\n')
except Exception as err_msg:
print(str(tweet_id)+ " - " + str(err_msg))
missing_tweets.append(tweet_id)
end = timer()
print('Entire query twitter data take {} min'.format(
(end - start)/60))
print(fails_dict)
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
1: 892420643555336193
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2: 892177421306343426
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 3: 891815181378084864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 4: 891689557279858688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 5: 891327558926688256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 6: 891087950875897856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 7: 890971913173991426
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 8: 890729181411237888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 9: 890609185150312448
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 10: 890240255349198849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 11: 890006608113172480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 12: 889880896479866881
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 13: 889665388333682689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 14: 889638837579907072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 15: 889531135344209921
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 16: 889278841981685760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 17: 888917238123831296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 18: 888804989199671297
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 19: 888554962724278272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 20: 888202515573088257
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
888202515573088257 - 404 Not Found 144 - No status found with that ID. 21: 888078434458587136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 22: 887705289381826560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 23: 887517139158093824
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 24: 887473957103951883
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 25: 887343217045368832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 26: 887101392804085760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 27: 886983233522544640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 28: 886736880519319552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 29: 886680336477933568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 30: 886366144734445568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 31: 886267009285017600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 32: 886258384151887873
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 33: 886054160059072513
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 34: 885984800019947520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 35: 885528943205470208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 36: 885518971528720385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 37: 885311592912609280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 38: 885167619883638784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 39: 884925521741709313
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 40: 884876753390489601
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 41: 884562892145688576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 42: 884441805382717440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 43: 884247878851493888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 44: 884162670584377345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 45: 883838122936631299
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 46: 883482846933004288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 47: 883360690899218434
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 48: 883117836046086144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 49: 882992080364220416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 50: 882762694511734784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 51: 882627270321602560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 52: 882268110199369728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 53: 882045870035918850
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 54: 881906580714921986
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 55: 881666595344535552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 56: 881633300179243008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 57: 881536004380872706
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 58: 881268444196462592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 59: 880935762899988482
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 60: 880872448815771648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 61: 880465832366813184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 62: 880221127280381952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 63: 880095782870896641
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 64: 879862464715927552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 65: 879674319642796034
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 66: 879492040517615616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 67: 879415818425184262
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 68: 879376492567855104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 69: 879130579576475649
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 70: 879050749262655488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 71: 879008229531029506
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 72: 878776093423087618
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 73: 878604707211726852
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 74: 878404777348136964
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 75: 878316110768087041
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 76: 878281511006478336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 77: 878057613040115712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 78: 877736472329191424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 79: 877611172832227328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 80: 877556246731214848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 81: 877316821321428993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 82: 877201837425926144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 83: 876838120628539392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 84: 876537666061221889
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 85: 876484053909872640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 86: 876120275196170240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 87: 875747767867523072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 88: 875144289856114688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 89: 875097192612077568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 90: 875021211251597312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 91: 874680097055178752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 92: 874434818259525634
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 93: 874296783580663808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 94: 874057562936811520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 95: 874012996292530176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 96: 873697596434513921
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
873697596434513921 - 404 Not Found 144 - No status found with that ID. 97: 873580283840344065
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 98: 873337748698140672
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 99: 873213775632977920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 100: 872967104147763200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 101: 872820683541237760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 102: 872668790621863937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
872668790621863937 - 404 Not Found 144 - No status found with that ID. 103: 872620804844003328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 104: 872486979161796608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 105: 872261713294495745
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
872261713294495745 - 404 Not Found 144 - No status found with that ID. 106: 872122724285648897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 107: 871879754684805121
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 108: 871762521631449091
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 109: 871515927908634625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 110: 871166179821445120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 111: 871102520638267392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 112: 871032628920680449
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 113: 870804317367881728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 114: 870726314365509632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 115: 870656317836468226
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 116: 870374049280663552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 117: 870308999962521604
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 118: 870063196459192321
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 119: 869988702071779329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
869988702071779329 - 404 Not Found 144 - No status found with that ID. 120: 869772420881756160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 121: 869702957897576449
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 122: 869596645499047938
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 123: 869227993411051520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 124: 868880397819494401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 125: 868639477480148993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 126: 868622495443632128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 127: 868552278524837888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 128: 867900495410671616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 129: 867774946302451713
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 130: 867421006826221569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 131: 867072653475098625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 132: 867051520902168576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 133: 866816280283807744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
866816280283807744 - 404 Not Found 144 - No status found with that ID. 134: 866720684873056260
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 135: 866686824827068416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 136: 866450705531457537
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 137: 866334964761202691
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 138: 866094527597207552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 139: 865718153858494464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 140: 865359393868664832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 141: 865006731092295680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 142: 864873206498414592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 143: 864279568663928832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 144: 864197398364647424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 145: 863907417377173506
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 146: 863553081350529029
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 147: 863471782782697472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 148: 863432100342583297
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 149: 863427515083354112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 150: 863079547188785154
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 151: 863062471531167744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 152: 862831371563274240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 153: 862722525377298433
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 154: 862457590147678208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 155: 862096992088072192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 156: 861769973181624320
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
861769973181624320 - 404 Not Found 144 - No status found with that ID. 157: 861383897657036800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 158: 861288531465048066
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 159: 861005113778896900
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 160: 860981674716409858
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 161: 860924035999428608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 162: 860563773140209665
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 163: 860524505164394496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 164: 860276583193509888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 165: 860184849394610176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 166: 860177593139703809
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 167: 859924526012018688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 168: 859851578198683649
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 169: 859607811541651456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 170: 859196978902773760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 171: 859074603037188101
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 172: 858860390427611136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 173: 858843525470990336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 174: 858471635011153920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 175: 858107933456039936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 176: 857989990357356544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 177: 857746408056729600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 178: 857393404942143489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 179: 857263160327368704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 180: 857214891891077121
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 181: 857062103051644929
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 182: 857029823797047296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 183: 856602993587888130
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
856602993587888130 - 404 Not Found 144 - No status found with that ID. 184: 856543823941562368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 185: 856526610513747968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 186: 856330835276025856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
856330835276025856 - 404 Not Found 144 - No status found with that ID. 187: 856288084350160898
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 188: 856282028240666624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 189: 855862651834028034
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 190: 855860136149123072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 191: 855857698524602368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 192: 855851453814013952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 193: 855818117272018944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 194: 855459453768019968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 195: 855245323840757760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 196: 855138241867124737
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 197: 854732716440526848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 198: 854482394044301312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 199: 854365224396361728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 200: 854120357044912130
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 201: 854010172552949760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 202: 853760880890318849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 203: 853639147608842240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 204: 853299958564483072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 205: 852936405516943360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 206: 852912242202992640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 207: 852672615818899456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 208: 852553447878664193
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 209: 852311364735569921
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 210: 852226086759018497
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 211: 852189679701164033
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 212: 851953902622658560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
851953902622658560 - 404 Not Found 144 - No status found with that ID. 213: 851861385021730816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
851861385021730816 - 404 Not Found 144 - No status found with that ID. 214: 851591660324737024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 215: 851464819735769094
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 216: 851224888060895234
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 217: 850753642995093505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 218: 850380195714523136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 219: 850333567704068097
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 220: 850145622816686080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 221: 850019790995546112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 222: 849776966551130114
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 223: 849668094696017920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 224: 849412302885593088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 225: 849336543269576704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 226: 849051919805034497
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 227: 848690551926992896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 228: 848324959059550208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 229: 848213670039564288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 230: 848212111729840128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 231: 847978865427394560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 232: 847971574464610304
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 233: 847962785489326080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 234: 847842811428974592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 235: 847617282490613760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 236: 847606175596138505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 237: 847251039262605312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 238: 847157206088847362
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 239: 847116187444137987
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 240: 846874817362120707
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 241: 846514051647705089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 242: 846505985330044928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 243: 846153765933735936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 244: 846139713627017216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 245: 846042936437604353
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 246: 845812042753855489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 247: 845677943972139009
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 248: 845459076796616705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
845459076796616705 - 404 Not Found 144 - No status found with that ID. 249: 845397057150107648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 250: 845306882940190720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 251: 845098359547420673
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 252: 844979544864018432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 253: 844973813909606400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 254: 844704788403113984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
844704788403113984 - 404 Not Found 144 - No status found with that ID. 255: 844580511645339650
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 256: 844223788422217728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 257: 843981021012017153
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 258: 843856843873095681
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 259: 843604394117681152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 260: 843235543001513987
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 261: 842892208864923648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
842892208864923648 - 404 Not Found 144 - No status found with that ID. 262: 842846295480000512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 263: 842765311967449089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 264: 842535590457499648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 265: 842163532590374912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 266: 842115215311396866
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 267: 841833993020538882
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 268: 841680585030541313
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 269: 841439858740625411
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 270: 841320156043304961
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 271: 841314665196081154
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 272: 841077006473256960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 273: 840761248237133825
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 274: 840728873075638272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 275: 840698636975636481
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 276: 840696689258311684
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 277: 840632337062862849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 278: 840370681858686976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 279: 840268004936019968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 280: 839990271299457024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 281: 839549326359670784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 282: 839290600511926273
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 283: 839239871831150596
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 284: 838952994649550848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 285: 838921590096166913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 286: 838916489579200512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 287: 838831947270979586
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 288: 838561493054533637
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 289: 838476387338051585
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 290: 838201503651401729
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 291: 838150277551247360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 292: 838085839343206401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 293: 838083903487373313
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 294: 837820167694528512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 295: 837482249356513284
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 296: 837471256429613056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 297: 837366284874571778
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
837366284874571778 - 404 Not Found 144 - No status found with that ID. 298: 837110210464448512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 299: 837012587749474308
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
837012587749474308 - 404 Not Found 144 - No status found with that ID. 300: 836989968035819520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 301: 836753516572119041
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 302: 836677758902222849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 303: 836648853927522308
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 304: 836397794269200385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 305: 836380477523124226
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 306: 836260088725786625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 307: 836001077879255040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 308: 835685285446955009
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 309: 835574547218894849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 310: 835536468978302976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 311: 835309094223372289
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 312: 835297930240217089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 313: 835264098648616962
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 314: 835246439529840640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 315: 835172783151792128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 316: 835152434251116546
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 317: 834931633769889797
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 318: 834786237630337024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 319: 834574053763584002
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 320: 834477809192075265
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 321: 834458053273591808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 322: 834209720923721728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 323: 834167344700198914
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 324: 834089966724603904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 325: 834086379323871233
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 326: 833863086058651648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 327: 833826103416520705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 328: 833732339549220864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 329: 833722901757046785
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 330: 833479644947025920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 331: 833124694597443584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 332: 832998151111966721
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 333: 832769181346996225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 334: 832757312314028032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 335: 832682457690300417
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 336: 832645525019123713
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 337: 832636094638288896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 338: 832397543355072512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 339: 832369877331693569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 340: 832273440279240704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 341: 832215909146226688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 342: 832215726631055365
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 343: 832088576586297345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 344: 832040443403784192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 345: 832032802820481025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 346: 831939777352105988
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 347: 831926988323639298
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 348: 831911600680497154
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 349: 831670449226514432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 350: 831650051525054464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 351: 831552930092285952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 352: 831322785565769729
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 353: 831315979191906304
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 354: 831309418084069378
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 355: 831262627380748289
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 356: 830956169170665475
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 357: 830583320585068544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 358: 830173239259324417
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 359: 830097400375152640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 360: 829878982036299777
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 361: 829861396166877184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 362: 829501995190984704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 363: 829449946868879360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 364: 829374341691346946
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
829374341691346946 - 404 Not Found 144 - No status found with that ID. 365: 829141528400556032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 366: 829011960981237760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 367: 828801551087042563
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 368: 828770345708580865
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 369: 828708714936930305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 370: 828650029636317184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 371: 828409743546925057
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 372: 828408677031882754
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 373: 828381636999917570
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 374: 828376505180889089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 375: 828372645993398273
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 376: 828361771580813312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 377: 828046555563323392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 378: 828011680017821696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 379: 827933404142436356
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 380: 827653905312006145
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 381: 827600520311402496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 382: 827324948884643840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 383: 827228250799742977
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
827228250799742977 - 404 Not Found 144 - No status found with that ID. 384: 827199976799354881
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 385: 826958653328592898
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 386: 826848821049180160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 387: 826615380357632002
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 388: 826598799820865537
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 389: 826598365270007810
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 390: 826476773533745153
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 391: 826240494070030336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 392: 826204788643753985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 393: 826115272272650244
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 394: 825876512159186944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 395: 825829644528148480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 396: 825535076884762624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 397: 825147591692263424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 398: 825120256414846976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 399: 825026590719483904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 400: 824796380199809024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 401: 824775126675836928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 402: 824663926340194305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 403: 824325613288833024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 404: 824297048279236611
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 405: 824025158776213504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 406: 823939628516474880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 407: 823719002937630720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 408: 823699002998870016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 409: 823581115634085888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 410: 823333489516937216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 411: 823322678127919110
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 412: 823269594223824897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 413: 822975315408461824
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 414: 822872901745569793
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 415: 822859134160621569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 416: 822647212903690241
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 417: 822610361945911296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 418: 822489057087389700
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 419: 822462944365645825
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 420: 822244816520155136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 421: 822163064745328640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 422: 821886076407029760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 423: 821813639212650496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 424: 821765923262631936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 425: 821522889702862852
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 426: 821421320206483457
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 427: 821407182352777218
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 428: 821153421864615936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 429: 821149554670182400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 430: 821107785811234820
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 431: 821044531881721856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 432: 820837357901512704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 433: 820749716845686786
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 434: 820690176645140481
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 435: 820494788566847489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 436: 820446719150292993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 437: 820314633777061888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 438: 820078625395449857
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 439: 820013781606658049
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 440: 819952236453363712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 441: 819924195358416896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 442: 819711362133872643
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 443: 819588359383371776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 444: 819347104292290561
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 445: 819238181065359361
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 446: 819227688460238848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 447: 819015337530290176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 448: 819015331746349057
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 449: 819006400881917954
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 450: 819004803107983360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 451: 818646164899774465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 452: 818627210458333184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 453: 818614493328580609
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 454: 818588835076603904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 455: 818536468981415936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 456: 818307523543449600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 457: 818259473185828864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 458: 818145370475810820
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 459: 817908911860748288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 460: 817827839487737858
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 461: 817777686764523521
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 462: 817536400337801217
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 463: 817502432452313088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 464: 817423860136083457
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 465: 817415592588222464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 466: 817181837579653120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 467: 817171292965273600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 468: 817120970343411712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 469: 817056546584727552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 470: 816829038950027264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 471: 816816676327063552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 472: 816697700272001025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 473: 816450570814898180
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 474: 816336735214911488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 475: 816091915477250048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 476: 816062466425819140
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 477: 816014286006976512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 478: 815990720817401858
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 479: 815966073409433600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 480: 815745968457060357
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 481: 815736392542261248
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 482: 815639385530101762
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 483: 815390420867969024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 484: 814986499976527872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 485: 814638523311648768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 486: 814578408554463233
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 487: 814530161257443328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 488: 814153002265309185
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 489: 813944609378369540
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 490: 813910438903693312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 491: 813812741911748608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 492: 813800681631023104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 493: 813217897535406080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 494: 813202720496779264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 495: 813187593374461952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 496: 813172488309972993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 497: 813157409116065792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 498: 813142292504645637
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 499: 813130366689148928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 500: 813127251579564032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 501: 813112105746448384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 502: 813096984823349248
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 503: 813081950185472002
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 504: 813066809284972545
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 505: 813051746834595840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 506: 812781120811126785
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 507: 812747805718642688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
812747805718642688 - 404 Not Found 144 - No status found with that ID. 508: 812709060537683968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 509: 812503143955202048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 510: 812466873996607488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 511: 812372279581671427
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 512: 811985624773361665
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 513: 811744202451197953
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 514: 811647686436880384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 515: 811627233043480576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 516: 811386762094317568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 517: 810984652412424192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 518: 810896069567610880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 519: 810657578271330305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 520: 810284430598270976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 521: 810254108431155201
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 522: 809920764300447744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 523: 809808892968534016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 524: 809448704142938112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 525: 809220051211603969
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 526: 809084759137812480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 527: 808838249661788160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 528: 808733504066486276
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 529: 808501579447930884
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 530: 808344865868283904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 531: 808134635716833280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 532: 808106460588765185
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 533: 808001312164028416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 534: 807621403335917568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 535: 807106840509214720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 536: 807059379405148160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 537: 807010152071229440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 538: 806629075125202948
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 539: 806620845233815552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 540: 806576416489959424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 541: 806542213899489280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 542: 806242860592926720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 543: 806219024703037440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 544: 805958939288408065
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 545: 805932879469572096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 546: 805826884734976000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 547: 805823200554876929
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 548: 805520635690676224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 549: 805487436403003392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 550: 805207613751304193
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 551: 804738756058218496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 552: 804475857670639616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 553: 804413760345620481
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 554: 804026241225523202
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 555: 803773340896923648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 556: 803692223237865472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 557: 803638050916102144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 558: 803380650405482500
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 559: 803321560782307329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 560: 803276597545603072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 561: 802952499103731712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 562: 802624713319034886
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 563: 802600418706604034
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 564: 802572683846291456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 565: 802323869084381190
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 566: 802265048156610565
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 567: 802247111496568832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
802247111496568832 - 404 Not Found 144 - No status found with that ID. 568: 802239329049477120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 569: 802185808107208704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 570: 801958328846974976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 571: 801854953262350336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 572: 801538201127157760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 573: 801285448605831168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 574: 801167903437357056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 575: 801127390143516673
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 576: 801115127852503040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 577: 800859414831898624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 578: 800855607700029440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 579: 800751577355128832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 580: 800513324630806528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 581: 800459316964663297
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 582: 800443802682937345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 583: 800388270626521089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 584: 800188575492947969
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 585: 800141422401830912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 586: 800018252395122689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 587: 799774291445383169
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 588: 799757965289017345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 589: 799422933579902976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 590: 799308762079035393
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 591: 799297110730567681
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 592: 799063482566066176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 593: 798933969379225600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 594: 798925684722855936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 595: 798705661114773508
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 596: 798701998996647937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 597: 798697898615730177
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 598: 798694562394996736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 599: 798686750113755136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 600: 798682547630837760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 601: 798673117451325440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 602: 798665375516884993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 603: 798644042770751489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 604: 798628517273620480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 605: 798585098161549313
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 606: 798576900688019456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 607: 798340744599797760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 608: 798209839306514432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 609: 797971864723324932
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 610: 797545162159308800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 611: 797236660651966464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 612: 797165961484890113
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 613: 796904159865868288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 614: 796865951799083009
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 615: 796759840936919040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 616: 796563435802726400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 617: 796484825502875648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 618: 796387464403357696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 619: 796177847564038144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 620: 796149749086875649
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 621: 796125600683540480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 622: 796116448414461957
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 623: 796080075804475393
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 624: 796031486298386433
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 625: 795464331001561088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 626: 795400264262053889
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 627: 795076730285391872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 628: 794983741416415232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 629: 794926597468000259
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 630: 794355576146903043
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 631: 794332329137291264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 632: 794205286408003585
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 633: 793962221541933056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 634: 793845145112371200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 635: 793614319594401792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 636: 793601777308463104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 637: 793500921481273345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 638: 793286476301799424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 639: 793271401113350145
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 640: 793256262322548741
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 641: 793241302385262592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 642: 793226087023144960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 643: 793210959003287553
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 644: 793195938047070209
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 645: 793180763617361921
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 646: 793165685325201412
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 647: 793150605191548928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 648: 793135492858580992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 649: 793120401413079041
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 650: 792913359805018113
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 651: 792883833364439040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 652: 792773781206999040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 653: 792394556390137856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 654: 792050063153438720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 655: 791821351946420224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 656: 791784077045166082
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 657: 791780927877898241
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 658: 791774931465953280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 659: 791672322847637504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 660: 791406955684368384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 661: 791312159183634433
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 662: 791026214425268224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 663: 790987426131050500
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 664: 790946055508652032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 665: 790723298204217344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 666: 790698755171364864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 667: 790581949425475584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 668: 790337589677002753
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 669: 790277117346975746
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 670: 790227638568808452
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 671: 789986466051088384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 672: 789960241177853952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 673: 789903600034189313
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 674: 789628658055020548
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 675: 789599242079838210
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 676: 789530877013393408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 677: 789314372632018944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 678: 789280767834746880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 679: 789268448748703744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 680: 789137962068021249
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 681: 788908386943430656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 682: 788765914992902144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 683: 788552643979468800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 684: 788412144018661376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 685: 788178268662984705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 686: 788150585577050112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 687: 788070120937619456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 688: 788039637453406209
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 689: 787810552592695296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 690: 787717603741622272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 691: 787397959788929025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 692: 787322443945877504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 693: 787111942498508800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 694: 786963064373534720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 695: 786729988674449408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 696: 786709082849828864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 697: 786664955043049472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 698: 786595970293370880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 699: 786363235746385920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 700: 786286427768250368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 701: 786233965241827333
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 702: 786051337297522688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 703: 786036967502913536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 704: 785927819176054784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 705: 785872687017132033
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 706: 785639753186217984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 707: 785533386513321988
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 708: 785515384317313025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 709: 785264754247995392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 710: 785170936622350336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 711: 784826020293709826
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 712: 784517518371221505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 713: 784431430411685888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 714: 784183165795655680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 715: 784057939640352768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 716: 783839966405230592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 717: 783821107061198850
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 718: 783695101801398276
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 719: 783466772167098368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 720: 783391753726550016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 721: 783347506784731136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 722: 783334639985389568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 723: 783085703974514689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 724: 782969140009107456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 725: 782747134529531904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 726: 782722598790725632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 727: 782598640137187329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 728: 782305867769217024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 729: 782021823840026624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 730: 781955203444699136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 731: 781661882474196992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 732: 781655249211752448
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 733: 781524693396357120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 734: 781308096455073793
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 735: 781251288990355457
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 736: 781163403222056960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 737: 780931614150983680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 738: 780858289093574656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 739: 780800785462489090
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 740: 780601303617732608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 741: 780543529827336192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 742: 780496263422808064
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 743: 780476555013349377
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 744: 780459368902959104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 745: 780192070812196864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 746: 780092040432480260
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 747: 780074436359819264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 748: 779834332596887552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 749: 779377524342161408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 750: 779124354206535695
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 751: 779123168116150273
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
779123168116150273 - 404 Not Found 144 - No status found with that ID. 752: 779056095788752897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 753: 778990705243029504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 754: 778774459159379968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 755: 778764940568104960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 756: 778748913645780993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 757: 778650543019483137
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 758: 778624900596654080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 759: 778408200802557953
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 760: 778396591732486144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 761: 778383385161035776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 762: 778286810187399168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 763: 778039087836069888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 764: 778027034220126208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 765: 777953400541634568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 766: 777885040357281792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 767: 777684233540206592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 768: 777641927919427584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 769: 777621514455814149
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 770: 777189768882946048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 771: 776819012571455488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 772: 776813020089548800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 773: 776477788987613185
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 774: 776249906839351296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 775: 776218204058357768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 776: 776201521193218049
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 777: 776113305656188928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 778: 776088319444877312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 779: 775898661951791106
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 780: 775842724423557120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 781: 775733305207554048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 782: 775729183532220416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 783: 775364825476165632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 784: 775350846108426240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 785: 775096608509886464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
775096608509886464 - 404 Not Found 144 - No status found with that ID. 786: 775085132600442880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 787: 774757898236878852
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 788: 774639387460112384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 789: 774314403806253056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 790: 773985732834758656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 791: 773922284943896577
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 792: 773704687002451968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 793: 773670353721753600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 794: 773547596996571136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 795: 773336787167145985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 796: 773308824254029826
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 797: 773247561583001600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 798: 773191612633579521
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 799: 772877495989305348
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 800: 772826264096874500
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 801: 772615324260794368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 802: 772581559778025472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 803: 772193107915964416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 804: 772152991789019136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 805: 772117678702071809
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 806: 772114945936949249
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 807: 772102971039580160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 808: 771908950375665664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 809: 771770456517009408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 810: 771500966810099713
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 811: 771380798096281600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 812: 771171053431250945
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 813: 771136648247640064
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 814: 771102124360998913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 815: 771014301343748096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 816: 771004394259247104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
771004394259247104 - 403 Forbidden 179 - Sorry, you are not authorized to see this status. 817: 770787852854652928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 818: 770772759874076672
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 819: 770743923962707968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
770743923962707968 - 404 Not Found 144 - No status found with that ID. 820: 770655142660169732
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 821: 770414278348247044
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 822: 770293558247038976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 823: 770093767776997377
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 824: 770069151037685760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 825: 769940425801170949
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 826: 769695466921623552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 827: 769335591808995329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 828: 769212283578875904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 829: 768970937022709760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 830: 768909767477751808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 831: 768855141948723200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 832: 768609597686943744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 833: 768596291618299904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 834: 768554158521745409
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 835: 768473857036525572
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 836: 768193404517830656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 837: 767884188863397888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 838: 767754930266464257
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 839: 767500508068192258
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 840: 767191397493538821
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 841: 767122157629476866
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 842: 766864461642756096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
766864461642756096 - 404 Not Found 144 - No status found with that ID. 843: 766793450729734144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 844: 766714921925144576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 845: 766693177336135680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 846: 766423258543644672
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 847: 766313316352462849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 848: 766078092750233600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 849: 766069199026450432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 850: 766008592277377025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 851: 765719909049503744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 852: 765669560888528897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 853: 765395769549590528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 854: 765371061932261376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 855: 765222098633691136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 856: 764857477905154048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 857: 764259802650378240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 858: 763956972077010945
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 859: 763837565564780549
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 860: 763183847194451968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 861: 763167063695355904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 862: 763103485927849985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 863: 762699858130116608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 864: 762471784394268675
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 865: 762464539388485633
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 866: 762316489655476224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 867: 762035686371364864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 868: 761976711479193600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 869: 761750502866649088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 870: 761745352076779520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 871: 761672994376806400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 872: 761599872357261312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 873: 761371037149827077
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 874: 761334018830917632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 875: 761292947749015552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 876: 761227390836215808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 877: 761004547850530816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 878: 760893934457552897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 879: 760656994973933572
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 880: 760641137271070720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 881: 760539183865880579
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 882: 760521673607086080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 883: 760290219849637889
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 884: 760252756032651264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 885: 760190180481531904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 886: 760153949710192640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 887: 759943073749200896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 888: 759923798737051648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
759923798737051648 - 404 Not Found 144 - No status found with that ID. 889: 759846353224826880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 890: 759793422261743616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 891: 759566828574212096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
759566828574212096 - 404 Not Found 144 - No status found with that ID. 892: 759557299618865152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 893: 759447681597108224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 894: 759446261539934208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 895: 759197388317847553
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 896: 759159934323924993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 897: 759099523532779520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 898: 759047813560868866
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 899: 758854675097526272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 900: 758828659922702336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 901: 758740312047005698
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 902: 758474966123810816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 903: 758467244762497024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 904: 758405701903519748
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 905: 758355060040593408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 906: 758099635764359168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 907: 758041019896193024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 908: 757741869644341248
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 909: 757729163776290825
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 910: 757725642876129280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 911: 757611664640446465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 912: 757597904299253760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 913: 757596066325864448
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 914: 757400162377592832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 915: 757393109802180609
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 916: 757354760399941633
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 917: 756998049151549440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 918: 756939218950160384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 919: 756651752796094464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 920: 756526248105566208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 921: 756303284449767430
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 922: 756288534030475264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 923: 756275833623502848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 924: 755955933503782912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 925: 755206590534418437
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 926: 755110668769038337
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 927: 754874841593970688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 928: 754856583969079297
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 929: 754747087846248448
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 930: 754482103782404096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 931: 754449512966619136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 932: 754120377874386944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 933: 754011816964026368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
754011816964026368 - 404 Not Found 144 - No status found with that ID. 934: 753655901052166144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 935: 753420520834629632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 936: 753398408988139520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 937: 753375668877008896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 938: 753298634498793472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 939: 753294487569522689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 940: 753039830821511168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 941: 753026973505581056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 942: 752932432744185856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 943: 752917284578922496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 944: 752701944171524096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 945: 752682090207055872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 946: 752660715232722944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 947: 752568224206688256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 948: 752519690950500352
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 949: 752334515931054080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 950: 752309394570878976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 951: 752173152931807232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 952: 751950017322246144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 953: 751937170840121344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 954: 751830394383790080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 955: 751793661361422336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 956: 751598357617971201
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 957: 751583847268179968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 958: 751538714308972544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 959: 751456908746354688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 960: 751251247299190784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 961: 751205363882532864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 962: 751132876104687617
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 963: 750868782890057730
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 964: 750719632563142656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 965: 750506206503038976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 966: 750429297815552001
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 967: 750383411068534784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 968: 750381685133418496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 969: 750147208377409536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 970: 750132105863102464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 971: 750117059602808832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 972: 750101899009982464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 973: 750086836815486976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 974: 750071704093859840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 975: 750056684286914561
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 976: 750041628174217216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 977: 750026558547456000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 978: 750011400160841729
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 979: 749996283729883136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 980: 749981277374128128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 981: 749774190421639168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 982: 749417653287129088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 983: 749403093750648834
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 984: 749395845976588288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 985: 749317047558017024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 986: 749075273010798592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 987: 749064354620928000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 988: 749036806121881602
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 989: 748977405889503236
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 990: 748932637671223296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 991: 748705597323898880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 992: 748699167502000129
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 993: 748692773788876800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 994: 748575535303884801
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 995: 748568946752774144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 996: 748346686624440324
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 997: 748337862848962560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 998: 748324050481647620
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 999: 748307329658011649
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1000: 748220828303695873
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1001: 747963614829678593
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1002: 747933425676525569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1003: 747885874273214464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1004: 747844099428986880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1005: 747816857231626240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1006: 747651430853525504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1007: 747648653817413632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1008: 747600769478692864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1009: 747594051852075008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1010: 747512671126323200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1011: 747461612269887489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1012: 747439450712596480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1013: 747242308580548608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1014: 747219827526344708
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1015: 747204161125646336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1016: 747103485104099331
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1017: 746906459439529985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1018: 746872823977771008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1019: 746818907684614144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1020: 746790600704425984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1021: 746757706116112384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1022: 746726898085036033
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1023: 746542875601690625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1024: 746521445350707200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1025: 746507379341139972
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1026: 746369468511756288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1027: 746131877086527488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1028: 746056683365994496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1029: 745789745784041472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1030: 745712589599014916
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1031: 745433870967832576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1032: 745422732645535745
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1033: 745314880350101504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1034: 745074613265149952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1035: 745057283344719872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1036: 744995568523612160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1037: 744971049620602880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1038: 744709971296780288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1039: 744334592493166593
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1040: 744234799360020481
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1041: 744223424764059648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1042: 743980027717509120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1043: 743895849529389061
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1044: 743835915802583040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1045: 743609206067040256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1046: 743595368194129920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1047: 743545585370791937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1048: 743510151680958465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1049: 743253157753532416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1050: 743222593470234624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1051: 743210557239623680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1052: 742534281772302336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1053: 742528092657332225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1054: 742465774154047488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1055: 742423170473463808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1056: 742385895052087300
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1057: 742161199639494656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1058: 742150209887731712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1059: 741793263812808706
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1060: 741743634094141440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1061: 741438259667034112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1062: 741303864243200000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1063: 741099773336379392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1064: 741067306818797568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1065: 740995100998766593
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1066: 740711788199743490
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1067: 740699697422163968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1068: 740676976021798912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1069: 740373189193256964
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1070: 740365076218183684
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1071: 740359016048689152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1072: 740214038584557568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1073: 739979191639244800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1074: 739932936087216128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1075: 739844404073074688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1076: 739623569819336705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1077: 739606147276148736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1078: 739544079319588864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1079: 739485634323156992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1080: 739238157791694849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1081: 738891149612572673
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1082: 738885046782832640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1083: 738883359779196928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1084: 738537504001953792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1085: 738402415918125056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1086: 738184450748633089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1087: 738166403467907072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1088: 738156290900254721
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1089: 737826014890496000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1090: 737800304142471168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1091: 737678689543020544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1092: 737445876994609152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1093: 737322739594330112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1094: 737310737551491075
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1095: 736736130620620800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1096: 736392552031657984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1097: 736365877722001409
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1098: 736225175608430592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1099: 736010884653420544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1100: 735991953473572864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1101: 735648611367784448
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1102: 735635087207878657
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1103: 735274964362878976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1104: 735256018284875776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1105: 735137028879360001
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1106: 734912297295085568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1107: 734787690684657664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1108: 734776360183431168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1109: 734559631394082816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1110: 733828123016450049
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1111: 733822306246479872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1112: 733482008106668032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1113: 733460102733135873
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1114: 733109485275860992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1115: 732732193018155009
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1116: 732726085725589504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1117: 732585889486888962
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1118: 732375214819057664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1119: 732005617171337216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1120: 731285275100512256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1121: 731156023742988288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1122: 730924654643314689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1123: 730573383004487680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1124: 730427201120833536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1125: 730211855403241472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1126: 730196704625098752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1127: 729854734790754305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1128: 729838605770891264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1129: 729823566028484608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1130: 729463711119904772
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1131: 729113531270991872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1132: 728986383096946689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1133: 728760639972315136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1134: 728751179681943552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1135: 728653952833728512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1136: 728409960103686147
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1137: 728387165835677696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1138: 728046963732717569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1139: 728035342121635841
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1140: 728015554473250816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1141: 727685679342333952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1142: 727644517743104000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1143: 727524757080539137
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1144: 727314416056803329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1145: 727286334147182592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1146: 727175381690781696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1147: 727155742655025152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1148: 726935089318363137
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1149: 726887082820554753
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1150: 726828223124897792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1151: 726224900189511680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1152: 725842289046749185
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1153: 725786712245440512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1154: 725729321944506368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1155: 725458796924002305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1156: 724983749226668032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1157: 724771698126512129
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1158: 724405726123311104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1159: 724049859469295616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1160: 724046343203856385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1161: 724004602748780546
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1162: 723912936180330496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1163: 723688335806480385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1164: 723673163800948736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1165: 723179728551723008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1166: 722974582966214656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1167: 722613351520608256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1168: 721503162398597120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1169: 721001180231503872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1170: 720785406564900865
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1171: 720775346191278080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1172: 720415127506415616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1173: 720389942216527872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1174: 720340705894408192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1175: 720059472081784833
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1176: 720043174954147842
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1177: 719991154352222208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1178: 719704490224398336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1179: 719551379208073216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1180: 719367763014393856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1181: 719339463458033665
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1182: 719332531645071360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1183: 718971898235854848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1184: 718939241951195136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1185: 718631497683582976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1186: 718613305783398402
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1187: 718540630683709445
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1188: 718460005985447936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1189: 718454725339934721
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1190: 718246886998687744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1191: 718234618122661888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1192: 717841801130979328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1193: 717790033953034240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1194: 717537687239008257
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1195: 717428917016076293
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1196: 717421804990701568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1197: 717047459982213120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1198: 717009362452090881
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1199: 716802964044845056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1200: 716791146589110272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1201: 716730379797970944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1202: 716447146686459905
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1203: 716439118184652801
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1204: 716285507865542656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1205: 716080869887381504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1206: 715928423106027520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1207: 715758151270801409
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1208: 715733265223708672
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1209: 715704790270025728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1210: 715696743237730304
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1211: 715680795826982913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1212: 715360349751484417
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1213: 715342466308784130
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1214: 715220193576927233
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1215: 715200624753819648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1216: 715009755312439296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1217: 714982300363173890
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1218: 714962719905021952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1219: 714957620017307648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1220: 714631576617938945
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1221: 714606013974974464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1222: 714485234495041536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1223: 714258258790387713
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1224: 714251586676113411
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1225: 714214115368108032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1226: 714141408463036416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1227: 713919462244790272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1228: 713909862279876608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1229: 713900603437621249
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1230: 713761197720473600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1231: 713411074226274305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1232: 713177543487135744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1233: 713175907180089344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1234: 712809025985978368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1235: 712717840512598017
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1236: 712668654853337088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1237: 712438159032893441
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1238: 712309440758808576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1239: 712097430750289920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1240: 712092745624633345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1241: 712085617388212225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1242: 712065007010385924
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1243: 711998809858043904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1244: 711968124745228288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1245: 711743778164514816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1246: 711732680602345472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1247: 711694788429553666
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1248: 711652651650457602
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1249: 711363825979756544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1250: 711306686208872448
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1251: 711008018775851008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1252: 710997087345876993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1253: 710844581445812225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1254: 710833117892898816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1255: 710658690886586372
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1256: 710609963652087808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1257: 710588934686908417
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1258: 710296729921429505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1259: 710283270106132480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1260: 710272297844797440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1261: 710269109699739648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1262: 710153181850935296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1263: 710140971284037632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1264: 710117014656950272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1265: 709918798883774466
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1266: 709901256215666688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1267: 709852847387627521
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1268: 709566166965075968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1269: 709556954897764353
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1270: 709519240576036864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1271: 709449600415961088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1272: 709409458133323776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1273: 709225125749587968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1274: 709207347839836162
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1275: 709198395643068416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1276: 709179584944730112
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1277: 709158332880297985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1278: 709042156699303936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1279: 708853462201716736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1280: 708845821941387268
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1281: 708834316713893888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1282: 708810915978854401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1283: 708738143638450176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1284: 708711088997666817
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1285: 708479650088034305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1286: 708469915515297792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1287: 708400866336894977
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1288: 708356463048204288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1289: 708349470027751425
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1290: 708149363256774660
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1291: 708130923141795840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1292: 708119489313951744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1293: 708109389455101952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1294: 708026248782585858
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1295: 707995814724026368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1296: 707983188426153984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1297: 707969809498152960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1298: 707776935007539200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1299: 707741517457260545
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1300: 707738799544082433
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1301: 707693576495472641
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1302: 707629649552134146
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1303: 707610948723478529
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1304: 707420581654872064
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1305: 707411934438625280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1306: 707387676719185920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1307: 707377100785885184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1308: 707315916783140866
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1309: 707297311098011648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1310: 707059547140169728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1311: 707038192327901184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1312: 707021089608753152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1313: 707014260413456384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1314: 706904523814649856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1315: 706901761596989440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1316: 706681918348251136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1317: 706644897839910912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1318: 706593038911545345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1319: 706538006853918722
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1320: 706516534877929472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1321: 706346369204748288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1322: 706310011488698368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1323: 706291001778950144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1324: 706265994973601792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1325: 706169069255446529
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1326: 706166467411222528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1327: 706153300320784384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1328: 705975130514706432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1329: 705970349788291072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1330: 705898680587526145
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1331: 705786532653883392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1332: 705591895322394625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1333: 705475953783398401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1334: 705442520700944385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1335: 705428427625635840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1336: 705239209544720384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1337: 705223444686888960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1338: 705102439679201280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1339: 705066031337840642
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1340: 704871453724954624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1341: 704859558691414016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1342: 704847917308362754
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1343: 704819833553219584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1344: 704761120771465216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1345: 704499785726889984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1346: 704491224099647488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1347: 704480331685040129
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1348: 704364645503647744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1349: 704347321748819968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1350: 704134088924532736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1351: 704113298707505153
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1352: 704054845121142784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1353: 703774238772166656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1354: 703769065844768768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1355: 703631701117943808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1356: 703611486317502464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1357: 703425003149250560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1358: 703407252292673536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1359: 703382836347330562
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1360: 703356393781329922
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1361: 703268521220972544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1362: 703079050210877440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1363: 703041949650034688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1364: 702932127499816960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1365: 702899151802126337
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1366: 702684942141153280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1367: 702671118226825216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1368: 702598099714314240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1369: 702539513671897089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1370: 702332542343577600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1371: 702321140488925184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1372: 702276748847800320
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1373: 702217446468493312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1374: 701981390485725185
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1375: 701952816642965504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1376: 701889187134500865
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1377: 701805642395348998
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1378: 701601587219795968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1379: 701570477911896070
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1380: 701545186879471618
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1381: 701214700881756160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1382: 700890391244103680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1383: 700864154249383937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1384: 700847567345688576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1385: 700796979434098688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1386: 700747788515020802
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1387: 700518061187723268
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1388: 700505138482569216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1389: 700462010979500032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1390: 700167517596164096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1391: 700151421916807169
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1392: 700143752053182464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1393: 700062718104104960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1394: 700029284593901568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1395: 700002074055016451
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1396: 699801817392291840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1397: 699788877217865730
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1398: 699779630832685056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1399: 699775878809702401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1400: 699691744225525762
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1401: 699446877801091073
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1402: 699434518667751424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1403: 699423671849451520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1404: 699413908797464576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1405: 699370870310113280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1406: 699323444782047232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1407: 699088579889332224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1408: 699079609774645248
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1409: 699072405256409088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1410: 699060279947165696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1411: 699036661657767936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1412: 698989035503689728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1413: 698953797952008193
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1414: 698907974262222848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1415: 698710712454139905
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1416: 698703483621523456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1417: 698635131305795584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1418: 698549713696649216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1419: 698355670425473025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1420: 698342080612007937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1421: 698262614669991936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1422: 698195409219559425
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1423: 698178924120031232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1424: 697995514407682048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1425: 697990423684476929
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1426: 697943111201378304
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1427: 697881462549430272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1428: 697630435728322560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1429: 697616773278015490
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1430: 697596423848730625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1431: 697575480820686848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1432: 697516214579523584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1433: 697482927769255936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1434: 697463031882764288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1435: 697270446429966336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1436: 697259378236399616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1437: 697255105972801536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1438: 697242256848379904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1439: 696900204696625153
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1440: 696894894812565505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1441: 696886256886657024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1442: 696877980375769088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1443: 696754882863349760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1444: 696744641916489729
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1445: 696713835009417216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1446: 696518437233913856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1447: 696490539101908992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1448: 696488710901260288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1449: 696405997980676096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1450: 696100768806522880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1451: 695816827381944320
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1452: 695794761660297217
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1453: 695767669421768709
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1454: 695629776980148225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1455: 695446424020918272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1456: 695409464418041856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1457: 695314793360662529
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1458: 695095422348574720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1459: 695074328191332352
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1460: 695064344191721472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1461: 695051054296211456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1462: 694925794720792577
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1463: 694905863685980160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1464: 694669722378485760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1465: 694356675654983680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1466: 694352839993344000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1467: 694342028726001664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1468: 694329668942569472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1469: 694206574471057408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1470: 694183373896572928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1471: 694001791655137281
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1472: 693993230313091072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1473: 693942351086120961
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1474: 693647888581312512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1475: 693644216740769793
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1476: 693642232151285760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1477: 693629975228977152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1478: 693622659251335168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1479: 693590843962331137
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1480: 693582294167244802
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1481: 693486665285931008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1482: 693280720173801472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1483: 693267061318012928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1484: 693262851218264065
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1485: 693231807727280129
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1486: 693155686491000832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1487: 693109034023534592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1488: 693095443459342336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1489: 692919143163629568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1490: 692905862751522816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1491: 692901601640583168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1492: 692894228850999298
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1493: 692828166163931137
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1494: 692752401762250755
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1495: 692568918515392513
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1496: 692535307825213440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1497: 692530551048294401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1498: 692423280028966913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1499: 692417313023332352
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1500: 692187005137076224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1501: 692158366030913536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1502: 692142790915014657
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1503: 692041934689402880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1504: 692017291282812928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1505: 691820333922455552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1506: 691793053716221953
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1507: 691756958957883396
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1508: 691675652215414786
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1509: 691483041324204033
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1510: 691459709405118465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1511: 691444869282295808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1512: 691416866452082688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1513: 691321916024623104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1514: 691096613310316544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1515: 691090071332753408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1516: 690989312272396288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1517: 690959652130045952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1518: 690938899477221376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1519: 690932576555528194
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1520: 690735892932222976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1521: 690728923253055490
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1522: 690690673629138944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1523: 690649993829576704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1524: 690607260360429569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1525: 690597161306841088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1526: 690400367696297985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1527: 690374419777196032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1528: 690360449368465409
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1529: 690348396616552449
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1530: 690248561355657216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1531: 690021994562220032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1532: 690015576308211712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1533: 690005060500217858
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1534: 689999384604450816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1535: 689993469801164801
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1536: 689977555533848577
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1537: 689905486972461056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1538: 689877686181715968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1539: 689835978131935233
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1540: 689661964914655233
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1541: 689659372465688576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1542: 689623661272240129
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1543: 689599056876867584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1544: 689557536375177216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1545: 689517482558820352
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1546: 689289219123089408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1547: 689283819090870273
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1548: 689280876073582592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1549: 689275259254616065
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1550: 689255633275777024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1551: 689154315265683456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1552: 689143371370250240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1553: 688916208532455424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1554: 688908934925697024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1555: 688898160958271489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1556: 688894073864884227
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1557: 688828561667567616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1558: 688804835492233216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1559: 688789766343622656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1560: 688547210804498433
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1561: 688519176466644993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1562: 688385280030670848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1563: 688211956440801280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1564: 688179443353796608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1565: 688116655151435777
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1566: 688064179421470721
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1567: 687841446767013888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1568: 687826841265172480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1569: 687818504314159109
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1570: 687807801670897665
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1571: 687732144991551489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1572: 687704180304273409
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1573: 687664829264453632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1574: 687494652870668288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1575: 687480748861947905
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1576: 687476254459715584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1577: 687460506001633280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1578: 687399393394311168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1579: 687317306314240000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1580: 687312378585812992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1581: 687127927494963200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1582: 687124485711986689
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1583: 687109925361856513
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1584: 687102708889812993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1585: 687096057537363968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1586: 686947101016735744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1587: 686760001961103360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1588: 686749460672679938
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1589: 686730991906516992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1590: 686683045143953408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1591: 686618349602762752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1592: 686606069955735556
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1593: 686394059078897668
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1594: 686386521809772549
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1595: 686377065986265092
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1596: 686358356425093120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1597: 686286779679375361
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1598: 686050296934563840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1599: 686035780142297088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1600: 686034024800862208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1601: 686007916130873345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1602: 686003207160610816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1603: 685973236358713344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1604: 685943807276412928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1605: 685906723014619143
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1606: 685681090388975616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1607: 685667379192414208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1608: 685663452032069632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1609: 685641971164143616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1610: 685547936038666240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1611: 685532292383666176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1612: 685325112850124800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1613: 685321586178670592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1614: 685315239903100929
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1615: 685307451701334016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1616: 685268753634967552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1617: 685198997565345792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1618: 685169283572338688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1619: 684969860808454144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1620: 684959798585110529
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1621: 684940049151070208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1622: 684926975086034944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1623: 684914660081053696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1624: 684902183876321280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1625: 684880619965411328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1626: 684830982659280897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1627: 684800227459624960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1628: 684594889858887680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1629: 684588130326986752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1630: 684567543613382656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1631: 684538444857667585
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1632: 684481074559381504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1633: 684460069371654144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1634: 684241637099323392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1635: 684225744407494656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1636: 684222868335505415
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1637: 684200372118904832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1638: 684195085588783105
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1639: 684188786104872960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1640: 684177701129875456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1641: 684147889187209216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1642: 684122891630342144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1643: 684097758874210310
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1644: 683857920510050305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1645: 683852578183077888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1646: 683849932751646720
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1647: 683834909291606017
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1648: 683828599284170753
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1649: 683773439333797890
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1650: 683742671509258241
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1651: 683515932363329536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1652: 683498322573824003
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1653: 683481228088049664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1654: 683462770029932544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1655: 683449695444799489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1656: 683391852557561860
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1657: 683357973142474752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1658: 683142553609318400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1659: 683111407806746624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1660: 683098815881154561
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1661: 683078886620553216
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1662: 683030066213818368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1663: 682962037429899265
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1664: 682808988178739200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1665: 682788441537560576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1666: 682750546109968385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1667: 682697186228989953
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1668: 682662431982772225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1669: 682638830361513985
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1670: 682429480204398592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1671: 682406705142087680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1672: 682393905736888321
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1673: 682389078323662849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1674: 682303737705140231
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1675: 682259524040966145
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1676: 682242692827447297
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1677: 682088079302213632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1678: 682059653698686977
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1679: 682047327939461121
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1680: 682032003584274432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1681: 682003177596559360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1682: 681981167097122816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1683: 681891461017812993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1684: 681694085539872773
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1685: 681679526984871937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1686: 681654059175129088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1687: 681610798867845120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1688: 681579835668455424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1689: 681523177663676416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1690: 681340665377193984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1691: 681339448655802368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1692: 681320187870711809
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1693: 681302363064414209
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1694: 681297372102656000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1695: 681281657291280384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1696: 681261549936340994
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1697: 681242418453299201
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1698: 681231109724700672
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1699: 681193455364796417
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1700: 680970795137544192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1701: 680959110691590145
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1702: 680940246314430465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1703: 680934982542561280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1704: 680913438424612864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1705: 680889648562991104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1706: 680836378243002368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1707: 680805554198020098
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1708: 680801747103793152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1709: 680798457301471234
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1710: 680609293079592961
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1711: 680583894916304897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1712: 680497766108381184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1713: 680494726643068929
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1714: 680473011644985345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1715: 680440374763077632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1716: 680221482581123072
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1717: 680206703334408192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1718: 680191257256136705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1719: 680176173301628928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1720: 680161097740095489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1721: 680145970311643136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1722: 680130881361686529
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1723: 680115823365742593
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1724: 680100725817409536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1725: 680085611152338944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1726: 680070545539371008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1727: 680055455951884288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
680055455951884288 - 404 Not Found 144 - No status found with that ID. 1728: 679877062409191424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1729: 679872969355714560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1730: 679862121895714818
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1731: 679854723806179328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1732: 679844490799091713
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1733: 679828447187857408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1734: 679777920601223168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1735: 679736210798047232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1736: 679729593985699840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1737: 679722016581222400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1738: 679530280114372609
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1739: 679527802031484928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1740: 679511351870550016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1741: 679503373272485890
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1742: 679475951516934144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1743: 679462823135686656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1744: 679405845277462528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1745: 679158373988876288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1746: 679148763231985668
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1747: 679132435750195208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1748: 679111216690831360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1749: 679062614270468097
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1750: 679047485189439488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1751: 679001094530465792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1752: 678991772295516161
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1753: 678969228704284672
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1754: 678800283649069056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1755: 678798276842360832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1756: 678774928607469569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1757: 678767140346941444
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1758: 678764513869611008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1759: 678755239630127104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1760: 678740035362037760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1761: 678708137298427904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1762: 678675843183484930
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1763: 678643457146150913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1764: 678446151570427904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1765: 678424312106393600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1766: 678410210315247616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1767: 678399652199309312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1768: 678396796259975168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1769: 678389028614488064
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1770: 678380236862578688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1771: 678341075375947776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1772: 678334497360859136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1773: 678278586130948096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1774: 678255464182861824
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1775: 678023323247357953
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1776: 678021115718029313
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1777: 677961670166224897
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1778: 677918531514703872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1779: 677895101218201600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1780: 677716515794329600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1781: 677700003327029250
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1782: 677698403548192770
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1783: 677687604918272002
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1784: 677673981332312066
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1785: 677662372920729601
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1786: 677644091929329666
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1787: 677573743309385728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1788: 677565715327688705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1789: 677557565589463040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1790: 677547928504967168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1791: 677530072887205888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1792: 677335745548390400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1793: 677334615166730240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1794: 677331501395156992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1795: 677328882937298944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1796: 677314812125323265
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1797: 677301033169788928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1798: 677269281705472000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1799: 677228873407442944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1800: 677187300187611136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1801: 676975532580409345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1802: 676957860086095872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1803: 676949632774234114
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1804: 676948236477857792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1805: 676946864479084545
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1806: 676942428000112642
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1807: 676936541936185344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1808: 676916996760600576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1809: 676897532954456065
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1810: 676864501615042560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1811: 676821958043033607
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1812: 676819651066732545
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1813: 676811746707918848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1814: 676776431406465024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1815: 676617503762681856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1816: 676613908052996102
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1817: 676606785097199616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1818: 676603393314578432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1819: 676593408224403456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1820: 676590572941893632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1821: 676588346097852417
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1822: 676582956622721024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1823: 676575501977128964
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1824: 676533798876651520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1825: 676496375194980353
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1826: 676470639084101634
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1827: 676440007570247681
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1828: 676430933382295552
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1829: 676263575653122048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1830: 676237365392908289
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1831: 676219687039057920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1832: 676215927814406144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1833: 676191832485810177
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1834: 676146341966438401
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1835: 676121918416756736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1836: 676101918813499392
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1837: 676098748976615425
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1838: 676089483918516224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1839: 675898130735476737
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1840: 675891555769696257
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1841: 675888385639251968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1842: 675878199931371520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1843: 675870721063669760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1844: 675853064436391936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1845: 675849018447167488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1846: 675845657354215424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1847: 675822767435051008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1848: 675820929667219457
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1849: 675798442703122432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1850: 675781562965868544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1851: 675740360753160193
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1852: 675710890956750848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1853: 675707330206547968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1854: 675706639471788032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1855: 675534494439489536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1856: 675531475945709568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1857: 675522403582218240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1858: 675517828909424640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1859: 675501075957489664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1860: 675497103322386432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1861: 675489971617296384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1862: 675483430902214656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1863: 675432746517426176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1864: 675372240448454658
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1865: 675362609739206656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1866: 675354435921575936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1867: 675349384339542016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1868: 675334060156301312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1869: 675166823650848770
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1870: 675153376133427200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1871: 675149409102012420
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1872: 675147105808306176
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1873: 675146535592706048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1874: 675145476954566656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1875: 675135153782571009
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1876: 675113801096802304
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1877: 675111688094527488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1878: 675109292475830276
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1879: 675047298674663426
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1880: 675015141583413248
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1881: 675006312288268288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1882: 675003128568291329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1883: 674999807681908736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1884: 674805413498527744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1885: 674800520222154752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1886: 674793399141146624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1887: 674790488185167872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1888: 674788554665512960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1889: 674781762103414784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1890: 674774481756377088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1891: 674767892831932416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1892: 674764817387900928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1893: 674754018082705410
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1894: 674752233200820224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1895: 674743008475090944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1896: 674742531037511680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1897: 674739953134403584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1898: 674737130913071104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1899: 674690135443775488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1900: 674670581682434048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1901: 674664755118911488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1902: 674646392044941312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1903: 674644256330530816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1904: 674638615994089473
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1905: 674632714662858753
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1906: 674606911342424069
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1907: 674468880899788800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1908: 674447403907457024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1909: 674436901579923456
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1910: 674422304705744896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1911: 674416750885273600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1912: 674410619106390016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1913: 674394782723014656
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1914: 674372068062928900
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1915: 674330906434379776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1916: 674318007229923329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1917: 674307341513269249
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1918: 674291837063053312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1919: 674271431610523648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1920: 674269164442398721
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1921: 674265582246694913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1922: 674262580978937856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1923: 674255168825880576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1924: 674082852460433408
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1925: 674075285688614912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1926: 674063288070742018
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1927: 674053186244734976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1928: 674051556661161984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1929: 674045139690631169
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1930: 674042553264685056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1931: 674038233588723717
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1932: 674036086168010753
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1933: 674024893172875264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1934: 674019345211760640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1935: 674014384960745472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1936: 674008982932058114
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1937: 673956914389192708
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1938: 673919437611909120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1939: 673906403526995968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1940: 673887867907739649
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1941: 673716320723169284
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1942: 673715861853720576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1943: 673711475735838725
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1944: 673709992831262724
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1945: 673708611235921920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1946: 673707060090052608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1947: 673705679337693185
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1948: 673700254269775872
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1949: 673697980713705472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1950: 673689733134946305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1951: 673688752737402881
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1952: 673686845050527744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1953: 673680198160809984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1954: 673662677122719744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1955: 673656262056419329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1956: 673636718965334016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1957: 673612854080196609
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1958: 673583129559498752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1959: 673580926094458881
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1960: 673576835670777856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1961: 673363615379013632
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1962: 673359818736984064
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1963: 673355879178194945
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1964: 673352124999274496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1965: 673350198937153538
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1966: 673345638550134785
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1967: 673343217010679808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1968: 673342308415348736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1969: 673320132811366400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1970: 673317986296586240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1971: 673295268553605120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1972: 673270968295534593
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1973: 673240798075449344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1974: 673213039743795200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1975: 673148804208660480
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1976: 672997845381865473
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1977: 672995267319328768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1978: 672988786805112832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1979: 672984142909456390
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1980: 672980819271634944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1981: 672975131468300288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1982: 672970152493887488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1983: 672968025906282496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1984: 672964561327235073
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1985: 672902681409806336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1986: 672898206762672129
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1987: 672884426393653248
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1988: 672877615439593473
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1989: 672834301050937345
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1990: 672828477930868736
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1991: 672640509974827008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1992: 672622327801233409
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1993: 672614745925664768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1994: 672609152938721280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1995: 672604026190569472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1996: 672594978741354496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1997: 672591762242805761
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1998: 672591271085670400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 1999: 672538107540070400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2000: 672523490734551040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2001: 672488522314567680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2002: 672482722825261057
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2003: 672481316919734272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2004: 672475084225949696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2005: 672466075045466113
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2006: 672272411274932228
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2007: 672267570918129665
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2008: 672264251789176834
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2009: 672256522047614977
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2010: 672254177670729728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2011: 672248013293752320
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2012: 672245253877968896
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2013: 672239279297454080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2014: 672231046314901505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2015: 672222792075620352
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2016: 672205392827572224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2017: 672169685991993344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2018: 672160042234327040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2019: 672139350159835138
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2020: 672125275208069120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2021: 672095186491711488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2022: 672082170312290304
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2023: 672068090318987265
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2024: 671896809300709376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2025: 671891728106971137
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2026: 671882082306625538
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2027: 671879137494245376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2028: 671874878652489728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2029: 671866342182637568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2030: 671855973984772097
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2031: 671789708968640512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2032: 671768281401958400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2033: 671763349865160704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2034: 671744970634719232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2035: 671743150407421952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2036: 671735591348891648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2037: 671729906628341761
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2038: 671561002136281088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2039: 671550332464455680
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2040: 671547767500775424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2041: 671544874165002241
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2042: 671542985629241344
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2043: 671538301157904385
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2044: 671536543010570240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2045: 671533943490011136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2046: 671528761649688577
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2047: 671520732782923777
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2048: 671518598289059840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2049: 671511350426865664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2050: 671504605491109889
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2051: 671497587707535361
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2052: 671488513339211776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2053: 671486386088865792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2054: 671485057807351808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2055: 671390180817915904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2056: 671362598324076544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2057: 671357843010908160
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2058: 671355857343524864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2059: 671347597085433856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2060: 671186162933985280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2061: 671182547775299584
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2062: 671166507850801152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2063: 671163268581498880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2064: 671159727754231808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2065: 671154572044468225
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2066: 671151324042559489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2067: 671147085991960577
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2068: 671141549288370177
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2069: 671138694582165504
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2070: 671134062904504320
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2071: 671122204919246848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2072: 671115716440031232
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2073: 671109016219725825
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2074: 670995969505435648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2075: 670842764863651840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2076: 670840546554966016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2077: 670838202509447168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2078: 670833812859932673
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2079: 670832455012716544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2080: 670826280409919488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2081: 670823764196741120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2082: 670822709593571328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2083: 670815497391357952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2084: 670811965569282048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2085: 670807719151067136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2086: 670804601705242624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2087: 670803562457407488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2088: 670797304698376195
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2089: 670792680469889025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2090: 670789397210615808
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2091: 670786190031921152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2092: 670783437142401025
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2093: 670782429121134593
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2094: 670780561024270336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2095: 670778058496974848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2096: 670764103623966721
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2097: 670755717859713024
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2098: 670733412878163972
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2099: 670727704916926465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2100: 670717338665226240
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2101: 670704688707301377
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2102: 670691627984359425
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2103: 670679630144274432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2104: 670676092097810432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2105: 670668383499735048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2106: 670474236058800128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2107: 670468609693655041
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2108: 670465786746662913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2109: 670452855871037440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2110: 670449342516494336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2111: 670444955656130560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2112: 670442337873600512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2113: 670435821946826752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2114: 670434127938719744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2115: 670433248821026816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2116: 670428280563085312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2117: 670427002554466305
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2118: 670421925039075328
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2119: 670420569653809152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2120: 670417414769758208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2121: 670411370698022913
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2122: 670408998013820928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2123: 670403879788544000
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2124: 670385711116361728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2125: 670374371102445568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2126: 670361874861563904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2127: 670338931251150849
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2128: 670319130621435904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2129: 670303360680108032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2130: 670290420111441920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2131: 670093938074779648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2132: 670086499208155136
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2133: 670079681849372674
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2134: 670073503555706880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2135: 670069087419133954
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2136: 670061506722140161
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2137: 670055038660800512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2138: 670046952931721218
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2139: 670040295598354432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2140: 670037189829525505
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2141: 670003130994700288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2142: 669993076832759809
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2143: 669972011175813120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2144: 669970042633789440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2145: 669942763794931712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2146: 669926384437997569
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2147: 669923323644657664
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2148: 669753178989142016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2149: 669749430875258880
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2150: 669684865554620416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2151: 669683899023405056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2152: 669682095984410625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2153: 669680153564442624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2154: 669661792646373376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2155: 669625907762618368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2156: 669603084620980224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2157: 669597912108789760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2158: 669583744538451968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2159: 669573570759163904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2160: 669571471778410496
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2161: 669567591774625800
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2162: 669564461267722241
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2163: 669393256313184256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2164: 669375718304980992
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2165: 669371483794317312
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2166: 669367896104181761
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2167: 669363888236994561
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2168: 669359674819481600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2169: 669354382627049472
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2170: 669353438988365824
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2171: 669351434509529089
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2172: 669328503091937280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2173: 669327207240699904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2174: 669324657376567296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2175: 669216679721873412
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2176: 669214165781868544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2177: 669203728096960512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2178: 669037058363662336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2179: 669015743032369152
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2180: 669006782128353280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2181: 669000397445533696
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2182: 668994913074286592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2183: 668992363537309700
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2184: 668989615043424256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2185: 668988183816871936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2186: 668986018524233728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2187: 668981893510119424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2188: 668979806671884288
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2189: 668975677807423489
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2190: 668967877119254528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2191: 668960084974809088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2192: 668955713004314625
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2193: 668932921458302977
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2194: 668902994700836864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2195: 668892474547511297
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2196: 668872652652679168
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2197: 668852170888998912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2198: 668826086256599040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2199: 668815180734689280
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2200: 668779399630725120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2201: 668655139528511488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2202: 668645506898350081
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2203: 668643542311546881
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2204: 668641109086707712
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2205: 668636665813057536
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2206: 668633411083464705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2207: 668631377374486528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2208: 668627278264475648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2209: 668625577880875008
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2210: 668623201287675904
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2211: 668620235289837568
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2212: 668614819948453888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2213: 668587383441514497
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2214: 668567822092664832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2215: 668544745690562560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2216: 668542336805281792
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2217: 668537837512433665
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2218: 668528771708952576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2219: 668507509523615744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2220: 668496999348633600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2221: 668484198282485761
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2222: 668480044826800133
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2223: 668466899341221888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2224: 668297328638447616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2225: 668291999406125056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2226: 668286279830867968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2227: 668274247790391296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2228: 668268907921326080
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2229: 668256321989451776
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2230: 668248472370458624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2231: 668237644992782336
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2232: 668226093875376128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2233: 668221241640230912
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2234: 668204964695683073
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2235: 668190681446379520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2236: 668171859951755264
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2237: 668154635664932864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2238: 668142349051129856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2239: 668113020489474048
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2240: 667937095915278337
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2241: 667924896115245057
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2242: 667915453470232577
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2243: 667911425562669056
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2244: 667902449697558528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2245: 667886921285246976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2246: 667885044254572545
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2247: 667878741721415682
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2248: 667873844930215936
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2249: 667866724293877760
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2250: 667861340749471744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2251: 667832474953625600
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2252: 667806454573760512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2253: 667801013445750784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2254: 667793409583771648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2255: 667782464991965184
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2256: 667773195014021121
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2257: 667766675769573376
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2258: 667728196545200128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2259: 667724302356258817
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2260: 667550904950915073
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2261: 667550882905632768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2262: 667549055577362432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2263: 667546741521195010
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2264: 667544320556335104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2265: 667538891197542400
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2266: 667534815156183040
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2267: 667530908589760512
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2268: 667524857454854144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2269: 667517642048163840
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2270: 667509364010450944
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2271: 667502640335572993
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2272: 667495797102141441
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2273: 667491009379606528
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2274: 667470559035432960
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2275: 667455448082227200
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2276: 667453023279554560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2277: 667443425659232256
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2278: 667437278097252352
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2279: 667435689202614272
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2280: 667405339315146752
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2281: 667393430834667520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2282: 667369227918143488
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2283: 667211855547486208
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2284: 667200525029539841
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2285: 667192066997374976
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2286: 667188689915760640
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2287: 667182792070062081
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2288: 667177989038297088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2289: 667176164155375616
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2290: 667174963120574464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2291: 667171260800061440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2292: 667165590075940865
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2293: 667160273090932737
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2294: 667152164079423490
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2295: 667138269671505920
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2296: 667119796878725120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2297: 667090893657276420
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2298: 667073648344346624
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2299: 667070482143944705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2300: 667065535570550784
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2301: 667062181243039745
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2302: 667044094246576128
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2303: 667012601033924608
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2304: 666996132027977728
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2305: 666983947667116034
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2306: 666837028449972224
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2307: 666835007768551424
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2308: 666826780179869698
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2309: 666817836334096384
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2310: 666804364988780544
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2311: 666786068205871104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2312: 666781792255496192
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2313: 666776908487630848
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2314: 666739327293083650
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2315: 666701168228331520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2316: 666691418707132416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2317: 666649482315059201
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2318: 666644823164719104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2319: 666454714377183233
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2320: 666447344410484738
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2321: 666437273139982337
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2322: 666435652385423360
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2323: 666430724426358785
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2324: 666428276349472768
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2325: 666421158376562688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2326: 666418789513326592
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2327: 666411507551481857
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2328: 666407126856765440
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2329: 666396247373291520
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2330: 666373753744588802
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2331: 666362758909284353
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2332: 666353288456101888
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2333: 666345417576210432
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2334: 666337882303524864
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2335: 666293911632134144
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2336: 666287406224695296
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2337: 666273097616637952
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2338: 666268910803644416
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2339: 666104133288665088
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2340: 666102155909144576
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2341: 666099513787052032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2342: 666094000022159362
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2343: 666082916733198337
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2344: 666073100786774016
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2345: 666071193221509120
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2346: 666063827256086533
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2347: 666058600524156928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2348: 666057090499244032
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2349: 666055525042405380
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2350: 666051853826850816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2351: 666050758794694657
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2352: 666049248165822465
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2353: 666044226329800704
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2354: 666033412701032449
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success 2355: 666029285002620928
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
Success
2356: 666020888022790149
Success
Entire query twitter data take 89.9547098894 min
{}
len(missing_tweets)
29
missing_tweets_final = [] # A list for the final unretrieved tweetIDs
with open('tweet_json.txt', 'a', encoding='utf8') as file:
for tweet_id in missing_tweets:
print(str(count) + ": " + str(tweet_id))
try:
tweet = api.get_status(tweet_id, tweet_mode = 'extended',
wait_on_rate_limit = True,
wait_on_rate_limit_notify = True)
print("Success")
json.dump(tweet._json, outfile)
outfile.write('\n')
except Exception as err_msg:
print(str(tweet_id)+ " - " + str(err_msg))
missing_tweets_final.append(tweet_id)
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
2356: 888202515573088257
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
888202515573088257 - 404 Not Found 144 - No status found with that ID. 2356: 873697596434513921
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
873697596434513921 - 404 Not Found 144 - No status found with that ID. 2356: 872668790621863937
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
872668790621863937 - 404 Not Found 144 - No status found with that ID. 2356: 872261713294495745
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
872261713294495745 - 404 Not Found 144 - No status found with that ID. 2356: 869988702071779329
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
869988702071779329 - 404 Not Found 144 - No status found with that ID. 2356: 866816280283807744
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
866816280283807744 - 404 Not Found 144 - No status found with that ID. 2356: 861769973181624320
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
861769973181624320 - 404 Not Found 144 - No status found with that ID. 2356: 856602993587888130
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
856602993587888130 - 404 Not Found 144 - No status found with that ID. 2356: 856330835276025856
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
856330835276025856 - 404 Not Found 144 - No status found with that ID. 2356: 851953902622658560
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
851953902622658560 - 404 Not Found 144 - No status found with that ID. 2356: 851861385021730816
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
851861385021730816 - 404 Not Found 144 - No status found with that ID. 2356: 845459076796616705
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
845459076796616705 - 404 Not Found 144 - No status found with that ID. 2356: 844704788403113984
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
844704788403113984 - 404 Not Found 144 - No status found with that ID. 2356: 842892208864923648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
842892208864923648 - 404 Not Found 144 - No status found with that ID. 2356: 837366284874571778
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
837366284874571778 - 404 Not Found 144 - No status found with that ID. 2356: 837012587749474308
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
837012587749474308 - 404 Not Found 144 - No status found with that ID. 2356: 829374341691346946
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
829374341691346946 - 404 Not Found 144 - No status found with that ID. 2356: 827228250799742977
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
827228250799742977 - 404 Not Found 144 - No status found with that ID. 2356: 812747805718642688
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
812747805718642688 - 404 Not Found 144 - No status found with that ID. 2356: 802247111496568832
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
802247111496568832 - 404 Not Found 144 - No status found with that ID. 2356: 779123168116150273
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
779123168116150273 - 404 Not Found 144 - No status found with that ID. 2356: 775096608509886464
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
775096608509886464 - 404 Not Found 144 - No status found with that ID. 2356: 771004394259247104
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
771004394259247104 - 403 Forbidden 179 - Sorry, you are not authorized to see this status. 2356: 770743923962707968
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
770743923962707968 - 404 Not Found 144 - No status found with that ID. 2356: 766864461642756096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
766864461642756096 - 404 Not Found 144 - No status found with that ID. 2356: 759923798737051648
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
759923798737051648 - 404 Not Found 144 - No status found with that ID. 2356: 759566828574212096
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
759566828574212096 - 404 Not Found 144 - No status found with that ID. 2356: 754011816964026368
Unexpected parameter: wait_on_rate_limit Unexpected parameter: wait_on_rate_limit_notify
754011816964026368 - 404 Not Found 144 - No status found with that ID. 2356: 680055455951884288 680055455951884288 - 404 Not Found 144 - No status found with that ID.
len(missing_tweets_final)
29
Seems 30 tweets from the archive_df are no-longer avaliable
# Collect all selected attributes
selected_attr = []
with open('tweet_json.txt', 'r') as json_file:
for line in json_file:
json_data = json.loads(line)
selected_attr.append({
'tweet_id': json_data['id_str'],
'retweet_count': json_data['retweet_count'],
'favorite_count': json_data['favorite_count'],
})
# Save all selected attributes in another dataframe
api_df = pd.DataFrame(selected_attr, columns = [
'tweet_id', 'retweet_count', 'favorite_count'
])
api_df.head()
| tweet_id | retweet_count | favorite_count | |
|---|---|---|---|
| 0 | 892420643555336193 | 7001 | 33801 |
| 1 | 892177421306343426 | 5299 | 29301 |
| 2 | 891815181378084864 | 3477 | 22042 |
| 3 | 891689557279858688 | 7223 | 36920 |
| 4 | 891327558926688256 | 7754 | 35299 |
api_df.shape
(2327, 3)
Used request to download the dataset.
import requests
import csv
res = requests.get('https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv')
with open('image_predictions.tsv', mode='wb') as file:
file.write(res.content)
image = pd.read_csv('image_predictions.tsv', sep='\t')
image.head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
image
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 1.566650e-01 | True | Shetland_sheepdog | 6.142850e-02 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 7.419170e-02 | True | Rhodesian_ridgeback | 7.201000e-02 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 1.385840e-01 | True | bloodhound | 1.161970e-01 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 3.606870e-01 | True | miniature_pinscher | 2.227520e-01 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 2.436820e-01 | True | Doberman | 1.546290e-01 | True |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | Bernese_mountain_dog | 0.651137 | True | English_springer | 2.637880e-01 | True | Greater_Swiss_Mountain_dog | 1.619920e-02 | True |
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | box_turtle | 0.933012 | False | mud_turtle | 4.588540e-02 | False | terrapin | 1.788530e-02 | False |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | chow | 0.692517 | True | Tibetan_mastiff | 5.827940e-02 | True | fur_coat | 5.444860e-02 | False |
| 8 | 666057090499244032 | https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg | 1 | shopping_cart | 0.962465 | False | shopping_basket | 1.459380e-02 | False | golden_retriever | 7.958960e-03 | True |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | miniature_poodle | 0.201493 | True | komondor | 1.923050e-01 | True | soft-coated_wheaten_terrier | 8.208610e-02 | True |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | golden_retriever | 0.775930 | True | Tibetan_mastiff | 9.371780e-02 | True | Labrador_retriever | 7.242660e-02 | True |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | Gordon_setter | 0.503672 | True | Yorkshire_terrier | 1.742010e-01 | True | Pekinese | 1.094540e-01 | True |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | Walker_hound | 0.260857 | True | English_foxhound | 1.753820e-01 | True | Ibizan_hound | 9.747050e-02 | True |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | pug | 0.489814 | True | bull_mastiff | 4.047220e-01 | True | French_bulldog | 4.895950e-02 | True |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | bloodhound | 0.195217 | True | German_shepherd | 7.825980e-02 | True | malinois | 7.562780e-02 | True |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | Lhasa | 0.582330 | True | Shih-Tzu | 1.661920e-01 | True | Dandie_Dinmont | 8.968830e-02 | True |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | English_setter | 0.298617 | True | Newfoundland | 1.498420e-01 | True | borzoi | 1.336490e-01 | True |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | hen | 0.965932 | False | cock | 3.391940e-02 | False | partridge | 5.206580e-05 | False |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | desktop_computer | 0.086502 | False | desk | 8.554740e-02 | False | bookcase | 7.947970e-02 | False |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | Italian_greyhound | 0.176053 | True | toy_terrier | 1.118840e-01 | True | basenji | 1.111520e-01 | True |
| 20 | 666287406224695296 | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | Maltese_dog | 0.857531 | True | toy_poodle | 6.306380e-02 | True | miniature_poodle | 2.558060e-02 | True |
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 1.525000e-02 | False | great_grey_owl | 1.320720e-02 | False |
| 22 | 666337882303524864 | https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg | 1 | ox | 0.416669 | False | Newfoundland | 2.784070e-01 | True | groenendael | 1.026430e-01 | True |
| 23 | 666345417576210432 | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | golden_retriever | 0.858744 | True | Chesapeake_Bay_retriever | 5.478680e-02 | True | Labrador_retriever | 1.424090e-02 | True |
| 24 | 666353288456101888 | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | malamute | 0.336874 | True | Siberian_husky | 1.476550e-01 | True | Eskimo_dog | 9.341240e-02 | True |
| 25 | 666362758909284353 | https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg | 1 | guinea_pig | 0.996496 | False | skunk | 2.402450e-03 | False | hamster | 4.608630e-04 | False |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | soft-coated_wheaten_terrier | 0.326467 | True | Afghan_hound | 2.595510e-01 | True | briard | 2.068030e-01 | True |
| 27 | 666396247373291520 | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | Chihuahua | 0.978108 | True | toy_terrier | 9.396970e-03 | True | papillon | 4.576810e-03 | True |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | black-and-tan_coonhound | 0.529139 | True | bloodhound | 2.442200e-01 | True | flat-coated_retriever | 1.738100e-01 | True |
| 29 | 666411507551481857 | https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg | 1 | coho | 0.404640 | False | barracouta | 2.714850e-01 | False | gar | 1.899450e-01 | False |
| 30 | 666418789513326592 | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | toy_terrier | 0.149680 | True | papillon | 1.482580e-01 | True | Chihuahua | 1.428600e-01 | True |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | Blenheim_spaniel | 0.906777 | True | cocker_spaniel | 9.034640e-02 | True | Shih-Tzu | 1.116870e-03 | True |
| 32 | 666428276349472768 | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | Pembroke | 0.371361 | True | chow | 2.493940e-01 | True | Pomeranian | 2.418780e-01 | True |
| 33 | 666430724426358785 | https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg | 1 | llama | 0.505184 | False | Irish_terrier | 1.041090e-01 | True | dingo | 6.207120e-02 | False |
| 34 | 666435652385423360 | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | Chesapeake_Bay_retriever | 0.184130 | True | chain_saw | 5.677530e-02 | False | power_drill | 3.676340e-02 | False |
| 35 | 666437273139982337 | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | Chihuahua | 0.671853 | True | beagle | 1.246800e-01 | True | Saluki | 4.409420e-02 | True |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | curly-coated_retriever | 0.322084 | True | giant_schnauzer | 2.879550e-01 | True | Labrador_retriever | 1.663310e-01 | True |
| 37 | 666454714377183233 | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | dalmatian | 0.278954 | True | Labrador_retriever | 2.376120e-01 | True | Great_Pyrenees | 1.711060e-01 | True |
| 38 | 666644823164719104 | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | Ibizan_hound | 0.044333 | True | Pembroke | 4.320930e-02 | True | West_Highland_white_terrier | 3.890560e-02 | True |
| 39 | 666649482315059201 | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | Border_collie | 0.447803 | True | English_springer | 1.704970e-01 | True | collie | 1.392060e-01 | True |
| 40 | 666691418707132416 | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | German_shepherd | 0.975401 | True | beagle | 8.687270e-03 | True | bloodhound | 5.394040e-03 | True |
| 41 | 666701168228331520 | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | Labrador_retriever | 0.887707 | True | Chihuahua | 2.930700e-02 | True | French_bulldog | 2.075630e-02 | True |
| 42 | 666739327293083650 | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | miniature_poodle | 0.546933 | True | cocker_spaniel | 1.652550e-01 | True | toy_poodle | 9.595890e-02 | True |
| 43 | 666776908487630848 | https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg | 1 | seat_belt | 0.375057 | False | miniature_pinscher | 1.671750e-01 | True | Chihuahua | 8.695060e-02 | True |
| 44 | 666781792255496192 | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | Italian_greyhound | 0.618316 | True | Weimaraner | 1.513630e-01 | True | vizsla | 8.598910e-02 | True |
| 45 | 666786068205871104 | https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg | 1 | snail | 0.999888 | False | slug | 5.514170e-05 | False | acorn | 2.625800e-05 | False |
| 46 | 666804364988780544 | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | English_setter | 0.328792 | True | Brittany_spaniel | 2.835450e-01 | True | Ibizan_hound | 5.746150e-02 | True |
| 47 | 666817836334096384 | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | miniature_schnauzer | 0.496953 | True | standard_schnauzer | 2.852760e-01 | True | giant_schnauzer | 7.376370e-02 | True |
| 48 | 666826780179869698 | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | Maltese_dog | 0.359383 | True | teddy | 1.487590e-01 | False | West_Highland_white_terrier | 1.060070e-01 | True |
| 49 | 666835007768551424 | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | Airedale | 0.448459 | True | toy_poodle | 1.240300e-01 | True | teddy | 1.101830e-01 | False |
| 50 | 666837028449972224 | https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg | 1 | triceratops | 0.442113 | False | armadillo | 1.140710e-01 | False | common_iguana | 4.325530e-02 | False |
| 51 | 666983947667116034 | https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg | 1 | swab | 0.589446 | False | chain_saw | 1.901420e-01 | False | wig | 3.450970e-02 | False |
| 52 | 666996132027977728 | https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg | 1 | hay | 0.507637 | False | Rottweiler | 6.248990e-02 | True | water_buffalo | 4.842470e-02 | False |
| 53 | 667012601033924608 | https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg | 1 | hyena | 0.987230 | False | African_hunting_dog | 1.260080e-02 | False | coyote | 5.735010e-05 | False |
| 54 | 667044094246576128 | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | golden_retriever | 0.765266 | True | Labrador_retriever | 2.066940e-01 | True | seat_belt | 1.066690e-02 | False |
| 55 | 667062181243039745 | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | Chesapeake_Bay_retriever | 0.825678 | True | vizsla | 9.099800e-02 | True | kelpie | 2.295620e-02 | True |
| 56 | 667065535570550784 | https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg | 1 | jigsaw_puzzle | 0.560001 | False | doormat | 1.032590e-01 | False | space_heater | 4.256800e-02 | False |
| 57 | 667073648344346624 | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | Chihuahua | 0.483682 | True | pug | 9.249390e-02 | True | Brabancon_griffon | 5.749540e-02 | True |
| 58 | 667090893657276420 | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | Chihuahua | 0.959514 | True | Italian_greyhound | 5.370150e-03 | True | Pomeranian | 2.641330e-03 | True |
| 59 | 667119796878725120 | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | Pembroke | 0.741563 | True | Chihuahua | 5.786590e-02 | True | toy_poodle | 3.912510e-02 | True |
| 60 | 667138269671505920 | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | West_Highland_white_terrier | 0.747713 | True | Samoyed | 2.436290e-01 | True | toy_poodle | 1.803970e-03 | True |
| 61 | 667152164079423490 | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | toy_poodle | 0.535411 | True | Pomeranian | 8.754400e-02 | True | miniature_poodle | 6.205000e-02 | True |
| 62 | 667160273090932737 | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | golden_retriever | 0.471351 | True | miniature_poodle | 9.199210e-02 | True | standard_poodle | 8.738540e-02 | True |
| 63 | 667165590075940865 | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | miniature_pinscher | 0.140173 | True | Rottweiler | 1.340940e-01 | True | beagle | 8.189980e-02 | True |
| 64 | 667171260800061440 | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | giant_schnauzer | 0.841265 | True | Lakeland_terrier | 5.274420e-02 | True | Irish_water_spaniel | 3.440170e-02 | True |
| 65 | 667174963120574464 | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | toy_poodle | 0.266437 | True | Chihuahua | 2.432230e-01 | True | bluetick | 7.280630e-02 | True |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | soft-coated_wheaten_terrier | 0.318981 | True | Lakeland_terrier | 2.152180e-01 | True | toy_poodle | 1.060140e-01 | True |
| 67 | 667177989038297088 | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | vizsla | 0.259249 | True | Chesapeake_Bay_retriever | 1.762930e-01 | True | Weimaraner | 1.123690e-01 | True |
| 68 | 667182792070062081 | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | golden_retriever | 0.949892 | True | Irish_setter | 1.056380e-02 | True | Chesapeake_Bay_retriever | 5.821410e-03 | True |
| 69 | 667188689915760640 | https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg | 1 | vacuum | 0.335830 | False | swab | 2.652780e-01 | False | toilet_tissue | 1.407030e-01 | False |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | Rottweiler | 0.283640 | True | miniature_pinscher | 1.481120e-01 | True | black-and-tan_coonhound | 9.558480e-02 | True |
| 71 | 667200525029539841 | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | Siberian_husky | 0.694904 | True | malamute | 2.320060e-01 | True | Eskimo_dog | 5.063510e-02 | True |
| 72 | 667211855547486208 | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | golden_retriever | 0.462556 | True | Labrador_retriever | 4.549370e-01 | True | kuvasz | 2.419330e-02 | True |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | teddy | 0.709545 | False | bath_towel | 1.272850e-01 | False | Christmas_stocking | 2.856750e-02 | False |
| 74 | 667393430834667520 | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | papillon | 0.557009 | True | Border_collie | 2.719630e-01 | True | collie | 7.347290e-02 | True |
| 75 | 667405339315146752 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | Saint_Bernard | 0.381377 | True | Leonberg | 1.279980e-01 | True | golden_retriever | 6.935680e-02 | True |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | Rottweiler | 0.999091 | True | miniature_pinscher | 4.503550e-04 | True | black-and-tan_coonhound | 1.571400e-04 | True |
| 77 | 667437278097252352 | https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg | 1 | porcupine | 0.989154 | False | bath_towel | 6.300490e-03 | False | badger | 9.663400e-04 | False |
| 78 | 667443425659232256 | https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg | 1 | goose | 0.980815 | False | drake | 6.917770e-03 | False | hen | 5.255170e-03 | False |
| 79 | 667453023279554560 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | Labrador_retriever | 0.825670 | True | French_bulldog | 5.663940e-02 | True | Staffordshire_bullterrier | 5.401840e-02 | True |
| 80 | 667455448082227200 | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | Tibetan_terrier | 0.676376 | True | Irish_terrier | 5.493340e-02 | True | Yorkshire_terrier | 4.057550e-02 | True |
| 81 | 667470559035432960 | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | toy_poodle | 0.304175 | True | pug | 2.234270e-01 | True | Lakeland_terrier | 7.331650e-02 | True |
| 82 | 667491009379606528 | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | borzoi | 0.852088 | True | ice_bear | 1.322640e-01 | False | weasel | 5.729980e-03 | False |
| 83 | 667495797102141441 | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | Chihuahua | 0.143957 | True | Christmas_stocking | 1.186510e-01 | False | ski_mask | 9.248170e-02 | False |
| 84 | 667502640335572993 | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | Labrador_retriever | 0.996709 | True | golden_retriever | 1.688210e-03 | True | beagle | 7.116670e-04 | True |
| 85 | 667509364010450944 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 86 | 667517642048163840 | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | Italian_greyhound | 0.125176 | True | standard_poodle | 8.457150e-02 | True | cocker_spaniel | 8.134690e-02 | True |
| 87 | 667524857454854144 | https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg | 1 | hare | 0.447893 | False | dhole | 9.243530e-02 | False | Chesapeake_Bay_retriever | 8.812240e-02 | True |
| 88 | 667530908589760512 | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | golden_retriever | 0.633037 | True | kuvasz | 1.463910e-01 | True | Labrador_retriever | 4.618370e-02 | True |
| 89 | 667534815156183040 | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | Pembroke | 0.435254 | True | Cardigan | 3.074070e-01 | True | cocker_spaniel | 3.315830e-02 | True |
| 90 | 667538891197542400 | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | Yorkshire_terrier | 0.618957 | True | silky_terrier | 3.003130e-01 | True | Australian_terrier | 5.341200e-02 | True |
| 91 | 667544320556335104 | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | Pomeranian | 0.412893 | True | Pembroke | 3.129580e-01 | True | Chihuahua | 7.196040e-02 | True |
| 92 | 667546741521195010 | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | toy_poodle | 0.787424 | True | miniature_poodle | 2.022250e-01 | True | teddy | 4.047220e-03 | False |
| 93 | 667549055577362432 | https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg | 1 | electric_fan | 0.984377 | False | spotlight | 7.736710e-03 | False | lampshade | 1.901230e-03 | False |
| 94 | 667550882905632768 | https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg | 1 | web_site | 0.998258 | False | dishwasher | 2.010840e-04 | False | oscilloscope | 1.417360e-04 | False |
| 95 | 667550904950915073 | https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg | 1 | web_site | 0.999335 | False | vizsla | 8.106320e-05 | True | collie | 6.915900e-05 | True |
| 96 | 667724302356258817 | https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg | 1 | ibex | 0.619098 | False | bighorn | 1.251190e-01 | False | ram | 7.467320e-02 | False |
| 97 | 667728196545200128 | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | kuvasz | 0.360159 | True | golden_retriever | 2.937440e-01 | True | Labrador_retriever | 2.706730e-01 | True |
| 98 | 667766675769573376 | https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg | 1 | fire_engine | 0.883493 | False | tow_truck | 7.473390e-02 | False | jeep | 1.277260e-02 | False |
| 99 | 667773195014021121 | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | West_Highland_white_terrier | 0.360465 | True | pug | 9.349410e-02 | True | ice_bear | 6.903820e-02 | False |
| 100 | 667782464991965184 | https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg | 1 | lorikeet | 0.466149 | False | hummingbird | 8.301100e-02 | False | African_grey | 5.424740e-02 | False |
| 101 | 667793409583771648 | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | dalmatian | 0.535073 | True | English_setter | 4.512190e-01 | True | Great_Dane | 8.163610e-03 | True |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | flat-coated_retriever | 0.508392 | True | Chesapeake_Bay_retriever | 2.622390e-01 | True | curly-coated_retriever | 4.891980e-02 | True |
| 103 | 667806454573760512 | https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg | 1 | toyshop | 0.253089 | False | Chihuahua | 1.871550e-01 | True | Brabancon_griffon | 1.127990e-01 | True |
| 104 | 667832474953625600 | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | miniature_pinscher | 0.214200 | True | bath_towel | 1.467890e-01 | False | Chihuahua | 1.041520e-01 | True |
| 105 | 667861340749471744 | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | malamute | 0.967275 | True | Siberian_husky | 1.616750e-02 | True | Eskimo_dog | 1.127740e-02 | True |
| 106 | 667866724293877760 | https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg | 1 | jigsaw_puzzle | 1.000000 | False | prayer_rug | 1.011300e-08 | False | doormat | 1.740170e-10 | False |
| 107 | 667873844930215936 | https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg | 1 | common_iguana | 0.999647 | False | frilled_lizard | 1.811500e-04 | False | African_chameleon | 1.283570e-04 | False |
| 108 | 667878741721415682 | https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg | 1 | seat_belt | 0.200373 | False | miniature_pinscher | 1.060030e-01 | True | schipperke | 1.047330e-01 | True |
| 109 | 667885044254572545 | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | malamute | 0.088530 | True | golden_retriever | 8.749860e-02 | True | muzzle | 7.500770e-02 | False |
| 110 | 667886921285246976 | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | Pomeranian | 0.800432 | True | Pekinese | 1.684450e-01 | True | Chihuahua | 8.949520e-03 | True |
| 111 | 667902449697558528 | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | Norwegian_elkhound | 0.298881 | True | malamute | 2.794790e-01 | True | Eskimo_dog | 1.984280e-01 | True |
| 112 | 667911425562669056 | https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg | 1 | frilled_lizard | 0.257695 | False | ox | 2.351600e-01 | False | triceratops | 8.531690e-02 | False |
| 113 | 667915453470232577 | https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg | 1 | leatherback_turtle | 0.452517 | False | boxer | 1.966550e-01 | True | terrapin | 1.609830e-01 | False |
| 114 | 667924896115245057 | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | Labrador_retriever | 0.209051 | True | hog | 2.039800e-01 | False | Newfoundland | 1.659140e-01 | True |
| 115 | 667937095915278337 | https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg | 1 | hamster | 0.172078 | False | guinea_pig | 9.492420e-02 | False | Band_Aid | 5.999520e-02 | False |
| 116 | 668113020489474048 | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | Pembroke | 0.548896 | True | Cardigan | 1.911010e-01 | True | collie | 5.981410e-02 | True |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | Angora | 0.918834 | False | hen | 3.779340e-02 | False | wood_rabbit | 1.101490e-02 | False |
| 118 | 668154635664932864 | https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg | 1 | Arctic_fox | 0.473584 | False | wallaby | 2.614110e-01 | False | white_wolf | 8.094780e-02 | False |
| 119 | 668171859951755264 | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | Chihuahua | 0.664834 | True | cowboy_boot | 6.034300e-02 | False | giant_panda | 5.983750e-02 | False |
| 120 | 668190681446379520 | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | Blenheim_spaniel | 0.958402 | True | cocker_spaniel | 2.676430e-02 | True | Welsh_springer_spaniel | 7.789910e-03 | True |
| 121 | 668204964695683073 | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | Labrador_retriever | 0.655180 | True | golden_retriever | 1.078840e-01 | True | Chesapeake_Bay_retriever | 6.583470e-02 | True |
| 122 | 668221241640230912 | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | chow | 0.395101 | True | golden_retriever | 3.721150e-01 | True | Labrador_retriever | 1.487850e-01 | True |
| 123 | 668226093875376128 | https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg | 1 | trombone | 0.390339 | False | cornet | 3.141490e-01 | False | French_horn | 2.551820e-01 | False |
| 124 | 668237644992782336 | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | chow | 0.809320 | True | minivan | 7.131070e-02 | False | Pekinese | 3.786960e-02 | True |
| 125 | 668248472370458624 | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | Chihuahua | 0.734547 | True | miniature_pinscher | 6.829440e-02 | True | toy_terrier | 4.636710e-02 | True |
| 126 | 668256321989451776 | https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg | 1 | canoe | 0.407683 | False | paddle | 1.155500e-01 | False | Pembroke | 9.442940e-02 | True |
| 127 | 668268907921326080 | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | Pembroke | 0.484830 | True | Cardigan | 4.253030e-01 | True | basenji | 1.475350e-02 | True |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | soft-coated_wheaten_terrier | 0.406374 | True | Lakeland_terrier | 2.638540e-01 | True | toy_poodle | 1.508440e-01 | True |
| 129 | 668286279830867968 | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | golden_retriever | 0.215944 | True | basset | 1.892140e-01 | True | Cardigan | 1.130100e-01 | True |
| 130 | 668291999406125056 | https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg | 1 | web_site | 0.995535 | False | skunk | 1.363490e-03 | False | badger | 6.856500e-04 | False |
| 131 | 668297328638447616 | https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg | 1 | king_penguin | 0.606747 | False | ice_bear | 2.642210e-01 | False | Eskimo_dog | 3.278380e-02 | True |
| 132 | 668466899341221888 | https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg | 1 | shopping_basket | 0.398361 | False | hamper | 3.632220e-01 | False | bassinet | 8.417350e-02 | False |
| 133 | 668480044826800133 | https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg | 1 | Arctic_fox | 0.119243 | False | Labrador_retriever | 9.996480e-02 | True | pug | 8.671650e-02 | True |
| 134 | 668484198282485761 | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | standard_poodle | 0.587372 | True | Bedlington_terrier | 1.824110e-01 | True | Afghan_hound | 4.096800e-02 | True |
| 135 | 668496999348633600 | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | Staffordshire_bullterrier | 0.412879 | True | miniature_pinscher | 1.614880e-01 | True | American_Staffordshire_terrier | 1.124950e-01 | True |
| 136 | 668507509523615744 | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | basenji | 0.055379 | True | Shetland_sheepdog | 5.432210e-02 | True | whippet | 5.191340e-02 | True |
| 137 | 668528771708952576 | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | Labrador_retriever | 0.195835 | True | kuvasz | 1.216070e-01 | True | English_setter | 8.146440e-02 | True |
| 138 | 668537837512433665 | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | Lakeland_terrier | 0.372988 | True | toy_poodle | 2.504450e-01 | True | Chihuahua | 1.897370e-01 | True |
| 139 | 668542336805281792 | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | American_Staffordshire_terrier | 0.267695 | True | French_bulldog | 2.540500e-01 | True | Staffordshire_bullterrier | 2.123810e-01 | True |
| 140 | 668544745690562560 | https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg | 1 | bearskin | 0.427870 | False | bow | 2.588580e-01 | False | panpipe | 2.156260e-02 | False |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | Shih-Tzu | 0.985649 | True | Lhasa | 7.078320e-03 | True | Pekinese | 3.053230e-03 | True |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | bustard | 0.380772 | False | pelican | 1.005540e-01 | False | crane | 8.471350e-02 | False |
| 143 | 668620235289837568 | https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg | 1 | crash_helmet | 0.757942 | False | toaster | 3.749680e-02 | False | mouse | 2.727090e-02 | False |
| 144 | 668623201287675904 | https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg | 4 | Chihuahua | 0.708163 | True | Pomeranian | 9.137190e-02 | True | titi | 6.732550e-02 | False |
| 145 | 668625577880875008 | https://pbs.twimg.com/media/CUdvambWoAA007z.jpg | 1 | ox | 0.071536 | False | groenendael | 5.445480e-02 | True | Angora | 4.502800e-02 | False |
| 146 | 668627278264475648 | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | French_bulldog | 0.965403 | True | pug | 8.603810e-03 | True | Boston_bull | 8.003560e-03 | True |
| 147 | 668631377374486528 | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | miniature_schnauzer | 0.904549 | True | Australian_terrier | 2.252940e-02 | True | silky_terrier | 1.524320e-02 | True |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | Pekinese | 0.589011 | True | Shih-Tzu | 3.909870e-01 | True | Japanese_spaniel | 3.310350e-03 | True |
| 149 | 668636665813057536 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | komondor | 0.999956 | True | llama | 4.309810e-05 | False | ram | 2.160900e-07 | False |
| 150 | 668641109086707712 | https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg | 1 | vacuum | 0.432594 | False | pug | 1.463110e-01 | True | toilet_tissue | 2.450030e-02 | False |
| 151 | 668643542311546881 | https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg | 1 | common_iguana | 0.483972 | False | frilled_lizard | 1.113770e-01 | False | sandbar | 7.898340e-02 | False |
| 152 | 668645506898350081 | https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg | 1 | ski_mask | 0.302854 | False | knee_pad | 9.688120e-02 | False | balance_beam | 8.407560e-02 | False |
| 153 | 668655139528511488 | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | beagle | 0.319110 | True | Italian_greyhound | 1.033380e-01 | True | basenji | 9.193000e-02 | True |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | Chesapeake_Bay_retriever | 0.285508 | True | Weimaraner | 1.468320e-01 | True | black-footed_ferret | 6.086480e-02 | False |
| 155 | 668815180734689280 | https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg | 1 | redbone | 0.461172 | True | Italian_greyhound | 2.707330e-01 | True | miniature_pinscher | 1.097520e-01 | True |
| 156 | 668826086256599040 | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | malinois | 0.640185 | True | Irish_terrier | 1.537000e-01 | True | Rhodesian_ridgeback | 6.845650e-02 | True |
| 157 | 668852170888998912 | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | golden_retriever | 0.903529 | True | Tibetan_mastiff | 4.149700e-02 | True | kuvasz | 2.250050e-02 | True |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | teddy | 0.413379 | False | pillow | 3.256230e-01 | False | miniature_schnauzer | 3.553660e-02 | True |
| 159 | 668892474547511297 | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | kelpie | 0.421979 | True | collie | 2.270600e-01 | True | Cardigan | 1.682110e-01 | True |
| 160 | 668902994700836864 | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | Brittany_spaniel | 0.828425 | True | Ibizan_hound | 4.308200e-02 | True | Blenheim_spaniel | 2.800360e-02 | True |
| 161 | 668932921458302977 | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | standard_poodle | 0.237638 | True | Old_English_sheepdog | 1.955730e-01 | True | toy_poodle | 1.446580e-01 | True |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | cocker_spaniel | 0.367492 | True | Lakeland_terrier | 2.726210e-01 | True | soft-coated_wheaten_terrier | 6.700630e-02 | True |
| 163 | 668960084974809088 | https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg | 1 | shower_curtain | 0.226309 | False | Chesapeake_Bay_retriever | 1.658780e-01 | True | bathtub | 5.672610e-02 | False |
| 164 | 668975677807423489 | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | basset | 0.605437 | True | Welsh_springer_spaniel | 1.847830e-01 | True | Saint_Bernard | 1.162990e-01 | True |
| 165 | 668979806671884288 | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | golden_retriever | 0.608537 | True | Irish_setter | 9.707800e-02 | True | redbone | 7.602220e-02 | True |
| 166 | 668981893510119424 | https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg | 1 | jellyfish | 0.447246 | False | coral_reef | 2.386250e-01 | False | goldfish | 4.022690e-02 | False |
| 167 | 668986018524233728 | https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg | 1 | doormat | 0.976103 | False | Chihuahua | 5.639720e-03 | True | Norfolk_terrier | 3.912650e-03 | True |
| 168 | 668988183816871936 | https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg | 1 | Arabian_camel | 0.999614 | False | bison | 2.280900e-04 | False | llama | 6.717870e-05 | False |
| 169 | 668989615043424256 | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | pug | 0.917326 | True | waffle_iron | 1.491750e-02 | False | Chihuahua | 1.352440e-02 | True |
| 170 | 668992363537309700 | https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg | 1 | lynx | 0.287506 | False | tabby | 2.060480e-01 | False | koala | 8.141930e-02 | False |
| 171 | 668994913074286592 | https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg | 1 | hog | 0.113789 | False | English_springer | 8.976330e-02 | True | French_bulldog | 8.218640e-02 | True |
| 172 | 669000397445533696 | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | Pembroke | 0.822940 | True | Cardigan | 1.770350e-01 | True | basenji | 2.335260e-05 | True |
| 173 | 669006782128353280 | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | Chihuahua | 0.127178 | True | Italian_greyhound | 5.421470e-02 | True | pillow | 4.859160e-02 | False |
| 174 | 669015743032369152 | https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg | 1 | comic_book | 0.275927 | False | bib | 1.735160e-01 | False | jersey | 7.391100e-02 | False |
| 175 | 669037058363662336 | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | Chihuahua | 0.803528 | True | Pomeranian | 5.387110e-02 | True | chow | 3.225740e-02 | True |
| 176 | 669203728096960512 | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | pug | 0.910452 | True | French_bulldog | 5.508960e-02 | True | Chihuahua | 1.489660e-02 | True |
| 177 | 669214165781868544 | https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg | 1 | minivan | 0.435396 | False | police_van | 3.101430e-01 | False | minibus | 6.820100e-02 | False |
| 178 | 669216679721873412 | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | golden_retriever | 0.992758 | True | Irish_setter | 3.379040e-03 | True | Saluki | 1.229630e-03 | True |
| 179 | 669324657376567296 | https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg | 1 | seashore | 0.201659 | False | Cardigan | 1.315440e-01 | True | sandbar | 1.014300e-01 | False |
| 180 | 669327207240699904 | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | golden_retriever | 0.919584 | True | Labrador_retriever | 4.966950e-02 | True | kuvasz | 1.021610e-02 | True |
| 181 | 669328503091937280 | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | Siberian_husky | 0.424202 | True | Eskimo_dog | 2.376600e-01 | True | malamute | 5.257170e-02 | True |
| 182 | 669351434509529089 | https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg | 1 | cuirass | 0.756829 | False | breastplate | 2.335200e-01 | False | bulletproof_vest | 3.811880e-03 | False |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | teddy | 0.379656 | False | Pembroke | 2.123430e-01 | True | chow | 9.699530e-02 | True |
| 184 | 669354382627049472 | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | Chihuahua | 0.973990 | True | French_bulldog | 1.083200e-02 | True | Pekinese | 2.098650e-03 | True |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | Labrador_retriever | 0.367818 | True | German_short-haired_pointer | 2.806420e-01 | True | Chesapeake_Bay_retriever | 1.842460e-01 | True |
| 186 | 669363888236994561 | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | golden_retriever | 0.539004 | True | Irish_setter | 4.065500e-01 | True | cocker_spaniel | 4.148440e-02 | True |
| 187 | 669367896104181761 | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | basset | 0.749394 | True | beagle | 1.335790e-01 | True | Welsh_springer_spaniel | 3.019840e-02 | True |
| 188 | 669371483794317312 | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | Brabancon_griffon | 0.483268 | True | miniature_pinscher | 3.074650e-01 | True | redbone | 7.052380e-02 | True |
| 189 | 669375718304980992 | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | Airedale | 0.168762 | True | Norfolk_terrier | 1.074790e-01 | True | Lakeland_terrier | 9.784590e-02 | True |
| 190 | 669393256313184256 | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | cocker_spaniel | 0.359843 | True | Blenheim_spaniel | 1.395190e-01 | True | toy_poodle | 1.327460e-01 | True |
| 191 | 669564461267722241 | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | toy_poodle | 0.623685 | True | miniature_poodle | 2.599200e-01 | True | standard_poodle | 8.252970e-02 | True |
| 192 | 669567591774625800 | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | Chihuahua | 0.980511 | True | toy_terrier | 9.166440e-03 | True | miniature_pinscher | 2.658510e-03 | True |
| 193 | 669571471778410496 | https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg | 1 | minivan | 0.873488 | False | pickup | 4.125930e-02 | False | beach_wagon | 1.540050e-02 | False |
| 194 | 669573570759163904 | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | West_Highland_white_terrier | 0.946828 | True | miniature_schnauzer | 2.234360e-02 | True | cairn | 9.461660e-03 | True |
| 195 | 669583744538451968 | https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg | 1 | candle | 0.174315 | False | lampshade | 1.204070e-01 | False | plunger | 7.209940e-02 | False |
| 196 | 669597912108789760 | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | Eskimo_dog | 0.595665 | True | Siberian_husky | 2.144740e-01 | True | white_wolf | 1.472350e-01 | False |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | Maltese_dog | 0.659619 | True | Tibetan_terrier | 1.935390e-01 | True | Shih-Tzu | 3.932710e-02 | True |
| 198 | 669625907762618368 | https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg | 1 | seat_belt | 0.874502 | False | golden_retriever | 5.540810e-02 | True | Labrador_retriever | 2.685430e-02 | True |
| 199 | 669661792646373376 | https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg | 1 | weasel | 0.262802 | False | Siamese_cat | 1.482630e-01 | False | hamster | 1.163740e-01 | False |
| 200 | 669680153564442624 | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | dalmatian | 0.141257 | True | borzoi | 1.377440e-01 | True | Labrador_retriever | 1.037920e-01 | True |
| 201 | 669682095984410625 | https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg | 1 | Christmas_stocking | 0.188397 | False | studio_couch | 8.688670e-02 | False | bookcase | 8.259860e-02 | False |
| 202 | 669683899023405056 | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | Pomeranian | 0.998275 | True | Chihuahua | 6.054760e-04 | True | Pekinese | 5.156880e-04 | True |
| 203 | 669749430875258880 | https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg | 1 | washbasin | 0.245794 | False | toilet_seat | 1.094200e-01 | False | paper_towel | 1.056640e-01 | False |
| 204 | 669753178989142016 | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | Pembroke | 0.858494 | True | hamster | 2.631880e-02 | False | Shetland_sheepdog | 2.240520e-02 | True |
| 205 | 669923323644657664 | https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg | 1 | car_mirror | 0.343063 | False | seat_belt | 1.102890e-01 | False | wing | 8.014850e-02 | False |
| 206 | 669926384437997569 | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | Pomeranian | 0.984231 | True | keeshond | 1.023110e-02 | True | papillon | 2.218970e-03 | True |
| 207 | 669942763794931712 | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | vizsla | 0.743216 | True | redbone | 2.172820e-01 | True | Rhodesian_ridgeback | 2.847350e-02 | True |
| 208 | 669970042633789440 | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | miniature_pinscher | 0.734744 | True | Rottweiler | 1.310660e-01 | True | Doberman | 8.150940e-02 | True |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | teddy | 0.953071 | False | koala | 7.026720e-03 | False | fur_coat | 5.368170e-03 | False |
| 210 | 669993076832759809 | https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg | 1 | piggy_bank | 0.176320 | False | hair_spray | 9.748700e-02 | False | toy_poodle | 8.650160e-02 | True |
| 211 | 670003130994700288 | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | beagle | 0.375313 | True | Saint_Bernard | 1.749110e-01 | True | English_foxhound | 1.158880e-01 | True |
| 212 | 670037189829525505 | https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg | 1 | pot | 0.273767 | False | tray | 9.288840e-02 | False | doormat | 5.072790e-02 | False |
| 213 | 670040295598354432 | https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg | 1 | web_site | 0.901552 | False | borzoi | 2.665960e-02 | True | Chihuahua | 1.243760e-02 | True |
| 214 | 670046952931721218 | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | Blenheim_spaniel | 0.998335 | True | beagle | 6.472890e-04 | True | Brittany_spaniel | 3.918660e-04 | True |
| 215 | 670055038660800512 | https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg | 1 | snail | 0.563631 | False | slug | 2.966490e-01 | False | bolete | 3.183920e-02 | False |
| 216 | 670061506722140161 | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | Italian_greyhound | 0.329339 | True | American_Staffordshire_terrier | 3.052940e-01 | True | whippet | 1.116860e-01 | True |
| 217 | 670069087419133954 | https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg | 1 | boathouse | 0.313829 | False | birdhouse | 1.383310e-01 | False | ashcan | 4.567320e-02 | False |
| 218 | 670073503555706880 | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | malamute | 0.601886 | True | Siberian_husky | 3.401060e-01 | True | Eskimo_dog | 5.004130e-02 | True |
| 219 | 670079681849372674 | https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg | 1 | mud_turtle | 0.157477 | False | terrapin | 1.318460e-01 | False | box_turtle | 6.067820e-02 | False |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | German_short-haired_pointer | 0.273492 | True | Staffordshire_bullterrier | 1.329440e-01 | True | bluetick | 1.245620e-01 | True |
| 221 | 670093938074779648 | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | toy_poodle | 0.383346 | True | miniature_poodle | 1.536780e-01 | True | chow | 1.385430e-01 | True |
| 222 | 670290420111441920 | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | Chihuahua | 0.368876 | True | Pomeranian | 2.821020e-01 | True | papillon | 1.787950e-01 | True |
| 223 | 670303360680108032 | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | Shetland_sheepdog | 0.380278 | True | Cardigan | 3.428060e-01 | True | guinea_pig | 1.562490e-01 | False |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 225 | 670338931251150849 | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | cairn | 0.245033 | True | West_Highland_white_terrier | 1.377090e-01 | True | miniature_schnauzer | 8.917250e-02 | True |
| 226 | 670361874861563904 | https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg | 1 | platypus | 0.974075 | False | spotted_salamander | 1.106760e-02 | False | bison | 3.896910e-03 | False |
| 227 | 670374371102445568 | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | English_springer | 0.974936 | True | English_setter | 1.166130e-02 | True | cocker_spaniel | 2.688990e-03 | True |
| 228 | 670385711116361728 | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | whippet | 0.178027 | True | Chesapeake_Bay_retriever | 1.059690e-01 | True | beagle | 7.871970e-02 | True |
| 229 | 670403879788544000 | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | pug | 0.802223 | True | French_bulldog | 1.725570e-01 | True | bull_mastiff | 7.162800e-03 | True |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 1.763430e-05 | False | racket | 1.470730e-05 | False |
| 231 | 670411370698022913 | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | Maltese_dog | 0.584397 | True | miniature_schnauzer | 6.420080e-02 | True | toy_poodle | 6.086770e-02 | True |
| 232 | 670417414769758208 | https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg | 1 | sea_urchin | 0.493257 | False | porcupine | 4.605650e-01 | False | cardoon | 8.145870e-03 | False |
| 233 | 670420569653809152 | https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg | 1 | bow_tie | 0.268759 | False | cardigan | 1.539570e-01 | False | wig | 7.229490e-02 | False |
| 234 | 670421925039075328 | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | Chihuahua | 0.275793 | True | corn | 7.359580e-02 | False | bolete | 5.490510e-02 | False |
| 235 | 670427002554466305 | https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg | 1 | seat_belt | 0.952258 | False | toy_terrier | 3.887160e-02 | True | beagle | 3.226440e-03 | True |
| 236 | 670428280563085312 | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | chow | 0.335269 | True | golden_retriever | 3.058500e-01 | True | Tibetan_mastiff | 6.332530e-02 | True |
| 237 | 670433248821026816 | https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg | 1 | window_shade | 0.583427 | False | giant_schnauzer | 6.221480e-02 | True | window_screen | 3.994100e-02 | False |
| 238 | 670434127938719744 | https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg | 1 | jack-o'-lantern | 0.919140 | False | Chesapeake_Bay_retriever | 2.735100e-02 | True | Labrador_retriever | 2.008090e-02 | True |
| 239 | 670435821946826752 | https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg | 1 | sorrel | 0.460370 | False | basenji | 1.357670e-01 | True | Cardigan | 9.917430e-02 | True |
| 240 | 670442337873600512 | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | Sussex_spaniel | 0.403552 | True | otterhound | 2.563020e-01 | True | Irish_terrier | 1.873150e-01 | True |
| 241 | 670444955656130560 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 242 | 670449342516494336 | https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg | 1 | peacock | 0.999924 | False | European_gallinule | 2.987300e-05 | False | agama | 2.150760e-05 | False |
| 243 | 670452855871037440 | https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg | 1 | Arctic_fox | 0.188174 | False | indri | 1.235840e-01 | False | malamute | 8.037950e-02 | True |
| 244 | 670465786746662913 | https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg | 1 | axolotl | 0.611558 | False | tailed_frog | 1.864840e-01 | False | common_newt | 7.869400e-02 | False |
| 245 | 670468609693655041 | https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg | 1 | minivan | 0.730152 | False | beach_wagon | 7.866140e-02 | False | car_wheel | 6.434580e-02 | False |
| 246 | 670474236058800128 | https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg | 1 | wool | 0.070076 | False | siamang | 6.253600e-02 | False | gorilla | 5.889360e-02 | False |
| 247 | 670668383499735048 | https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg | 1 | banana | 0.107317 | False | orange | 9.966220e-02 | False | bagel | 8.903260e-02 | False |
| 248 | 670676092097810432 | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | Dandie_Dinmont | 0.676102 | True | West_Highland_white_terrier | 4.082560e-02 | True | clumber | 3.953330e-02 | True |
| 249 | 670679630144274432 | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | Ibizan_hound | 0.342734 | True | Brittany_spaniel | 2.290650e-01 | True | Chihuahua | 1.040290e-01 | True |
| 250 | 670691627984359425 | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | Shetland_sheepdog | 0.071124 | True | home_theater | 6.839780e-02 | False | American_Staffordshire_terrier | 6.696390e-02 | True |
| 251 | 670704688707301377 | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | Norwich_terrier | 0.419838 | True | cairn | 3.518760e-01 | True | Norfolk_terrier | 5.109370e-02 | True |
| 252 | 670717338665226240 | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | Pomeranian | 0.368161 | True | Pekinese | 3.509730e-01 | True | golden_retriever | 1.149020e-01 | True |
| 253 | 670727704916926465 | https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg | 1 | wood_rabbit | 0.368562 | False | tabby | 3.096750e-01 | False | Egyptian_cat | 1.549140e-01 | False |
| 254 | 670733412878163972 | https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg | 1 | dhole | 0.350416 | False | hare | 2.366610e-01 | False | wood_rabbit | 9.113280e-02 | False |
| 255 | 670755717859713024 | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | keeshond | 0.994065 | True | Norwegian_elkhound | 1.827480e-03 | True | cairn | 1.821310e-03 | True |
| 256 | 670764103623966721 | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | Norfolk_terrier | 0.172850 | True | golden_retriever | 7.270220e-02 | True | television | 3.749420e-02 | False |
| 257 | 670778058496974848 | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | pug | 0.776612 | True | Brabancon_griffon | 1.120320e-01 | True | boxer | 3.905140e-02 | True |
| 258 | 670780561024270336 | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | Labrador_retriever | 0.244889 | True | American_black_bear | 5.699350e-02 | False | brown_bear | 5.399260e-02 | False |
| 259 | 670782429121134593 | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | Chihuahua | 0.952963 | True | French_bulldog | 3.657470e-02 | True | Boston_bull | 1.977400e-03 | True |
| 260 | 670783437142401025 | https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg | 1 | lacewing | 0.381955 | False | sulphur_butterfly | 1.068100e-01 | False | leafhopper | 6.834690e-02 | False |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | dingo | 0.777124 | False | Pembroke | 1.274380e-01 | True | Cardigan | 2.400660e-02 | True |
| 262 | 670789397210615808 | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | beagle | 0.295966 | True | basset | 1.435270e-01 | True | bluetick | 1.389920e-01 | True |
| 263 | 670792680469889025 | https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg | 1 | brown_bear | 0.882426 | False | toy_poodle | 3.135500e-02 | True | miniature_poodle | 2.574340e-02 | True |
| 264 | 670797304698376195 | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | Pembroke | 0.472197 | True | beagle | 9.093800e-02 | True | German_shepherd | 6.436600e-02 | True |
| 265 | 670803562457407488 | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | basenji | 0.344101 | True | Ibizan_hound | 2.102820e-01 | True | toy_terrier | 1.962790e-01 | True |
| 266 | 670804601705242624 | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | Pomeranian | 0.868560 | True | Pekinese | 9.012920e-02 | True | chow | 2.172210e-02 | True |
| 267 | 670807719151067136 | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | Old_English_sheepdog | 0.958035 | True | Sealyham_terrier | 1.389220e-02 | True | Border_collie | 4.601140e-03 | True |
| 268 | 670811965569282048 | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | basset | 0.994090 | True | Walker_hound | 3.972680e-03 | True | beagle | 1.406190e-03 | True |
| 269 | 670815497391357952 | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | American_Staffordshire_terrier | 0.919714 | True | Staffordshire_bullterrier | 7.343020e-02 | True | bull_mastiff | 9.056790e-04 | True |
| 270 | 670822709593571328 | https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg | 1 | web_site | 0.993887 | False | Chihuahua | 1.251520e-03 | True | menu | 5.987510e-04 | False |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | Labrador_retriever | 0.947453 | True | German_short-haired_pointer | 1.700060e-02 | True | Weimaraner | 1.543210e-02 | True |
| 272 | 670826280409919488 | https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg | 1 | scorpion | 0.927956 | False | tarantula | 2.163100e-02 | False | wolf_spider | 1.483750e-02 | False |
| 273 | 670832455012716544 | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | malinois | 0.317607 | True | Norwegian_elkhound | 2.749010e-01 | True | bathing_cap | 1.146430e-01 | False |
| 274 | 670833812859932673 | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | Pekinese | 0.609853 | True | Persian_cat | 2.654420e-01 | False | Japanese_spaniel | 2.746040e-02 | True |
| 275 | 670838202509447168 | https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg | 1 | flamingo | 0.992710 | False | coral_fungus | 3.490810e-03 | False | stinkhorn | 1.858950e-03 | False |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | Shih-Tzu | 0.963622 | True | Lhasa | 1.601670e-02 | True | guinea_pig | 7.931920e-03 | False |
| 277 | 670842764863651840 | https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg | 1 | microphone | 0.096063 | False | accordion | 9.407470e-02 | False | drumstick | 6.111280e-02 | False |
| 278 | 670995969505435648 | https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg | 1 | redbone | 0.866221 | True | beagle | 6.119400e-02 | True | Rhodesian_ridgeback | 2.428450e-02 | True |
| 279 | 671109016219725825 | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | basenji | 0.855959 | True | beagle | 3.672310e-02 | True | toy_terrier | 2.925780e-02 | True |
| 280 | 671115716440031232 | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | malinois | 0.406341 | True | kelpie | 1.433660e-01 | True | dingo | 1.298020e-01 | False |
| 281 | 671122204919246848 | https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg | 1 | goose | 0.351957 | False | Chihuahua | 1.012280e-01 | True | hen | 6.581760e-02 | False |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | Shih-Tzu | 0.180380 | True | golden_retriever | 1.801940e-01 | True | Labrador_retriever | 1.736560e-01 | True |
| 283 | 671138694582165504 | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | Samoyed | 0.587342 | True | Great_Pyrenees | 2.689520e-01 | True | Pekinese | 9.052750e-02 | True |
| 284 | 671141549288370177 | https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg | 1 | guinea_pig | 0.387728 | False | wood_rabbit | 1.716810e-01 | False | borzoi | 7.535770e-02 | True |
| 285 | 671147085991960577 | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | Yorkshire_terrier | 0.467202 | True | cairn | 4.401220e-01 | True | silky_terrier | 5.869010e-02 | True |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | Rottweiler | 0.781201 | True | black-and-tan_coonhound | 6.120650e-02 | True | kelpie | 4.885570e-02 | True |
| 287 | 671154572044468225 | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | Labrador_retriever | 0.495047 | True | Chesapeake_Bay_retriever | 3.501880e-01 | True | golden_retriever | 1.424000e-01 | True |
| 288 | 671159727754231808 | https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg | 1 | pitcher | 0.117446 | False | sunglasses | 6.248650e-02 | False | mask | 5.951670e-02 | False |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | African_hunting_dog | 0.733025 | False | plow | 1.193770e-01 | False | Scottish_deerhound | 2.698290e-02 | True |
| 290 | 671166507850801152 | https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg | 1 | refrigerator | 0.829772 | False | toilet_seat | 3.008330e-02 | False | shower_curtain | 1.546070e-02 | False |
| 291 | 671182547775299584 | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | Rottweiler | 0.331179 | True | kelpie | 2.186010e-01 | True | Appenzeller | 1.825200e-01 | True |
| 292 | 671186162933985280 | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | Chihuahua | 0.319106 | True | whippet | 1.691340e-01 | True | toy_terrier | 1.258150e-01 | True |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | picket_fence | 0.382918 | False | rain_barrel | 1.088090e-01 | False | plastic_bag | 3.887820e-02 | False |
| 294 | 671355857343524864 | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | miniature_poodle | 0.313811 | True | toy_poodle | 1.655850e-01 | True | Irish_terrier | 5.609410e-02 | True |
| 295 | 671357843010908160 | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | Italian_greyhound | 0.831757 | True | toy_terrier | 4.330580e-02 | True | Chihuahua | 3.677300e-02 | True |
| 296 | 671362598324076544 | https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg | 1 | tub | 0.393616 | False | bathtub | 3.835220e-01 | False | swimming_trunks | 7.730080e-02 | False |
| 297 | 671390180817915904 | https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg | 1 | zebra | 0.997673 | False | tiger | 8.372680e-04 | False | prairie_chicken | 5.745670e-04 | False |
| 298 | 671485057807351808 | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | Samoyed | 0.627901 | True | Great_Pyrenees | 2.764210e-01 | True | kuvasz | 5.787350e-02 | True |
| 299 | 671486386088865792 | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | German_shepherd | 0.827035 | True | kelpie | 8.764770e-02 | True | red_wolf | 3.121790e-02 | False |
| 300 | 671488513339211776 | https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg | 1 | hermit_crab | 0.528761 | False | snail | 1.856440e-01 | False | shower_curtain | 6.636050e-02 | False |
| 301 | 671497587707535361 | https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg | 1 | swing | 0.089165 | False | paddle | 8.074690e-02 | False | bathing_cap | 6.569400e-02 | False |
| 302 | 671504605491109889 | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | toy_poodle | 0.259115 | True | bath_towel | 1.776690e-01 | False | Maltese_dog | 7.171250e-02 | True |
| 303 | 671511350426865664 | https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg | 1 | hermit_crab | 0.625409 | False | tick | 1.273330e-01 | False | snail | 9.791590e-02 | False |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | Lakeland_terrier | 0.428275 | True | wire-haired_fox_terrier | 1.114720e-01 | True | toy_poodle | 1.050160e-01 | True |
| 305 | 671520732782923777 | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | Pomeranian | 0.551031 | True | Pekinese | 1.352620e-01 | True | gibbon | 6.155740e-02 | False |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | Doberman | 0.782626 | True | black-and-tan_coonhound | 1.096780e-01 | True | Gordon_setter | 5.211020e-02 | True |
| 307 | 671533943490011136 | https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg | 1 | hen | 0.556524 | False | cock | 4.420330e-01 | False | black_swan | 1.180750e-03 | False |
| 308 | 671536543010570240 | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | pug | 0.537652 | True | bull_mastiff | 2.206170e-01 | True | French_bulldog | 6.829650e-02 | True |
| 309 | 671538301157904385 | https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg | 1 | park_bench | 0.194211 | False | water_bottle | 7.186960e-02 | False | beacon | 5.343310e-02 | False |
| 310 | 671542985629241344 | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | Shetland_sheepdog | 0.980339 | True | collie | 6.693000e-03 | True | papillon | 6.157010e-03 | True |
| 311 | 671544874165002241 | https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg | 1 | feather_boa | 0.240858 | False | wig | 8.594620e-02 | False | wool | 4.067350e-02 | False |
| 312 | 671547767500775424 | https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg | 2 | Loafer | 0.255088 | False | platypus | 9.001910e-02 | False | cowboy_boot | 6.653600e-02 | False |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | Gordon_setter | 0.469373 | True | black-and-tan_coonhound | 2.708930e-01 | True | Rottweiler | 1.532330e-01 | True |
| 314 | 671729906628341761 | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | kuvasz | 0.431469 | True | Samoyed | 1.171220e-01 | True | white_wolf | 9.006660e-02 | False |
| 315 | 671735591348891648 | https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg | 2 | stone_wall | 0.271121 | False | Irish_wolfhound | 6.307820e-02 | True | poncho | 4.822590e-02 | False |
| 316 | 671743150407421952 | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | toy_poodle | 0.419427 | True | miniature_poodle | 2.370670e-01 | True | swing | 1.041930e-01 | False |
| 317 | 671744970634719232 | https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg | 1 | ice_bear | 0.251193 | False | ram | 2.138390e-01 | False | Arctic_fox | 8.155140e-02 | False |
| 318 | 671763349865160704 | https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg | 1 | prayer_rug | 0.445334 | False | doormat | 2.753110e-01 | False | bib | 4.881320e-02 | False |
| 319 | 671768281401958400 | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | Chihuahua | 0.500373 | True | French_bulldog | 1.127960e-01 | True | Italian_greyhound | 6.289270e-02 | True |
| 320 | 671789708968640512 | https://pbs.twimg.com/tweet_video_thumb/CVKtH-... | 1 | dalmatian | 0.114259 | True | teddy | 6.227520e-02 | False | steam_locomotive | 4.970020e-02 | False |
| 321 | 671855973984772097 | https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg | 1 | chimpanzee | 0.636031 | False | gorilla | 9.875150e-02 | False | fountain | 3.175550e-02 | False |
| 322 | 671866342182637568 | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | Labrador_retriever | 0.875614 | True | Chihuahua | 3.218220e-02 | True | golden_retriever | 1.723250e-02 | True |
| 323 | 671874878652489728 | https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg | 1 | china_cabinet | 0.996031 | False | entertainment_center | 1.985890e-03 | False | bookcase | 1.651810e-03 | False |
| 324 | 671879137494245376 | https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg | 1 | bee_eater | 0.302648 | False | toucan | 2.196460e-01 | False | chickadee | 1.566870e-01 | False |
| 325 | 671882082306625538 | https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg | 1 | ski_mask | 0.968325 | False | mask | 2.186270e-02 | False | abaya | 5.479450e-03 | False |
| 326 | 671891728106971137 | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | Labrador_retriever | 0.567933 | True | golden_retriever | 3.494010e-01 | True | seat_belt | 6.939620e-02 | False |
| 327 | 671896809300709376 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 328 | 672068090318987265 | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | pug | 0.863385 | True | shopping_cart | 1.257460e-01 | False | Border_terrier | 2.972460e-03 | True |
| 329 | 672082170312290304 | https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg | 1 | hamster | 0.132440 | False | toy_poodle | 1.239620e-01 | True | bubble | 5.621240e-02 | False |
| 330 | 672095186491711488 | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | pug | 0.794087 | True | French_bulldog | 1.407960e-01 | True | bull_mastiff | 4.468110e-02 | True |
| 331 | 672125275208069120 | https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg | 1 | tennis_ball | 0.999834 | False | golden_retriever | 8.675670e-05 | True | racket | 5.332190e-05 | False |
| 332 | 672139350159835138 | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | Rottweiler | 0.290992 | True | American_black_bear | 2.381200e-01 | False | chimpanzee | 1.155410e-01 | False |
| 333 | 672160042234327040 | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | pug | 0.561027 | True | French_bulldog | 2.221140e-01 | True | Labrador_retriever | 6.545560e-02 | True |
| 334 | 672169685991993344 | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | cocker_spaniel | 0.991011 | True | Sussex_spaniel | 4.032130e-03 | True | miniature_poodle | 1.275640e-03 | True |
| 335 | 672205392827572224 | https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg | 1 | carton | 0.952613 | False | crate | 3.537620e-02 | False | pug | 3.266910e-03 | True |
| 336 | 672222792075620352 | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | beagle | 0.958178 | True | basset | 9.117310e-03 | True | Italian_greyhound | 7.731050e-03 | True |
| 337 | 672231046314901505 | https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg | 1 | killer_whale | 0.823919 | False | grey_whale | 3.660060e-02 | False | hammerhead | 2.952190e-02 | False |
| 338 | 672239279297454080 | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | pug | 0.332536 | True | French_bulldog | 2.581240e-01 | True | bull_mastiff | 1.208730e-01 | True |
| 339 | 672245253877968896 | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | Chihuahua | 0.718944 | True | badger | 1.785460e-01 | False | toy_terrier | 3.710310e-02 | True |
| 340 | 672248013293752320 | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | Irish_terrier | 0.413173 | True | Airedale | 3.356160e-01 | True | toy_poodle | 2.795230e-02 | True |
| 341 | 672254177670729728 | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | pug | 0.979487 | True | French_bulldog | 1.685040e-02 | True | Norwegian_elkhound | 1.617540e-03 | True |
| 342 | 672256522047614977 | https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg | 1 | ostrich | 0.999004 | False | Arabian_camel | 5.120290e-04 | False | llama | 1.469420e-04 | False |
| 343 | 672264251789176834 | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | Chihuahua | 0.609860 | True | teddy | 6.813370e-02 | False | Norwich_terrier | 5.922730e-02 | True |
| 344 | 672267570918129665 | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | Irish_terrier | 0.716932 | True | miniature_pinscher | 5.123350e-02 | True | Airedale | 4.438090e-02 | True |
| 345 | 672272411274932228 | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | pug | 0.914685 | True | Norwegian_elkhound | 1.498190e-02 | True | Siamese_cat | 9.220550e-03 | False |
| 346 | 672466075045466113 | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | cocker_spaniel | 0.150424 | True | toy_poodle | 8.860530e-02 | True | Welsh_springer_spaniel | 7.201430e-02 | True |
| 347 | 672475084225949696 | https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg | 1 | terrapin | 0.879286 | False | cockroach | 4.525240e-02 | False | box_turtle | 1.640380e-02 | False |
| 348 | 672481316919734272 | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | Border_collie | 0.599454 | True | collie | 1.062270e-01 | True | Shetland_sheepdog | 9.446490e-02 | True |
| 349 | 672482722825261057 | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | West_Highland_white_terrier | 0.586173 | True | borzoi | 2.066200e-01 | True | Great_Pyrenees | 6.065270e-02 | True |
| 350 | 672488522314567680 | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | Doberman | 0.605358 | True | Rottweiler | 1.083820e-01 | True | Appenzeller | 7.779770e-02 | True |
| 351 | 672523490734551040 | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | golden_retriever | 0.565981 | True | chow | 8.121170e-02 | True | Irish_terrier | 6.159600e-02 | True |
| 352 | 672538107540070400 | https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg | 1 | Siamese_cat | 0.383937 | False | Chihuahua | 1.602740e-01 | True | giant_panda | 1.477450e-01 | False |
| 353 | 672591271085670400 | https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg | 1 | gondola | 0.134290 | False | lifeboat | 1.083560e-01 | False | bassinet | 9.367890e-02 | False |
| 354 | 672591762242805761 | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | kuvasz | 0.777659 | True | Great_Pyrenees | 1.125170e-01 | True | golden_retriever | 3.835090e-02 | True |
| 355 | 672594978741354496 | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | Great_Pyrenees | 0.755945 | True | Old_English_sheepdog | 8.233680e-02 | True | Afghan_hound | 2.703660e-02 | True |
| 356 | 672604026190569472 | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | toy_poodle | 0.820158 | True | miniature_poodle | 1.784040e-01 | True | toilet_tissue | 2.911580e-04 | False |
| 357 | 672609152938721280 | https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg | 1 | microwave | 0.981946 | False | rotisserie | 7.472450e-03 | False | television | 5.880620e-03 | False |
| 358 | 672614745925664768 | https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg | 1 | starfish | 0.712717 | False | goldfish | 2.588650e-01 | False | sea_cucumber | 2.015430e-03 | False |
| 359 | 672622327801233409 | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | golden_retriever | 0.952773 | True | Labrador_retriever | 1.083500e-02 | True | clumber | 8.786010e-03 | True |
| 360 | 672640509974827008 | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | Chesapeake_Bay_retriever | 0.420155 | True | Cardigan | 2.660300e-01 | True | Labrador_retriever | 4.251450e-02 | True |
| 361 | 672828477930868736 | https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg | 1 | sandbar | 0.118154 | False | stingray | 7.591500e-02 | False | seashore | 7.512480e-02 | False |
| 362 | 672834301050937345 | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | Pembroke | 0.582560 | True | Cardigan | 2.588690e-01 | True | nipple | 3.383450e-02 | False |
| 363 | 672877615439593473 | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | Chihuahua | 0.412362 | True | beagle | 6.806610e-02 | True | borzoi | 4.507120e-02 | True |
| 364 | 672884426393653248 | https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg | 1 | tusker | 0.122410 | False | warthog | 1.198700e-01 | False | water_buffalo | 1.058560e-01 | False |
| 365 | 672898206762672129 | https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg | 1 | motor_scooter | 0.835819 | False | bobsled | 3.585630e-02 | False | moped | 3.307900e-02 | False |
| 366 | 672902681409806336 | https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg | 1 | ram | 0.374466 | False | bighorn | 1.596210e-01 | False | Arabian_camel | 1.119190e-01 | False |
| 367 | 672964561327235073 | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | Chihuahua | 0.292343 | True | pug | 1.733640e-01 | True | French_bulldog | 4.550710e-02 | True |
| 368 | 672968025906282496 | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | toy_poodle | 0.678046 | True | miniature_poodle | 1.602730e-01 | True | Airedale | 6.564870e-02 | True |
| 369 | 672970152493887488 | https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg | 1 | leaf_beetle | 0.340154 | False | rhinoceros_beetle | 1.396980e-01 | False | crayfish | 5.803360e-02 | False |
| 370 | 672975131468300288 | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | pug | 0.836421 | True | Brabancon_griffon | 4.466780e-02 | True | French_bulldog | 3.657050e-02 | True |
| 371 | 672980819271634944 | https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg | 1 | car_mirror | 0.232754 | False | basset | 2.194610e-01 | True | beagle | 1.123970e-01 | True |
| 372 | 672984142909456390 | https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg | 1 | wombat | 0.738780 | False | beaver | 1.333680e-01 | False | wallaby | 3.237010e-02 | False |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | Lakeland_terrier | 0.836632 | True | West_Highland_white_terrier | 7.389960e-02 | True | wire-haired_fox_terrier | 3.816010e-02 | True |
| 374 | 672995267319328768 | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | French_bulldog | 0.719559 | True | boxer | 1.669270e-01 | True | Boston_bull | 1.013540e-01 | True |
| 375 | 672997845381865473 | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | chow | 0.517255 | True | Pomeranian | 2.060530e-01 | True | koala | 1.270370e-01 | False |
| 376 | 673148804208660480 | https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg | 1 | tub | 0.873010 | False | bathtub | 9.143410e-02 | False | toilet_seat | 2.545630e-02 | False |
| 377 | 673213039743795200 | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | schipperke | 0.888082 | True | groenendael | 4.772740e-02 | True | kelpie | 4.139800e-02 | True |
| 378 | 673240798075449344 | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | Airedale | 0.443004 | True | brown_bear | 1.141620e-01 | False | Chesapeake_Bay_retriever | 9.463860e-02 | True |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | Shih-Tzu | 0.610453 | True | Maltese_dog | 1.668150e-01 | True | Old_English_sheepdog | 1.320150e-01 | True |
| 380 | 673295268553605120 | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | golden_retriever | 0.889241 | True | Labrador_retriever | 6.468330e-02 | True | Great_Pyrenees | 1.261260e-02 | True |
| 381 | 673317986296586240 | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | miniature_pinscher | 0.384099 | True | bloodhound | 7.992320e-02 | True | Rottweiler | 6.859410e-02 | True |
| 382 | 673320132811366400 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 383 | 673342308415348736 | https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg | 1 | ski_mask | 0.981017 | False | Chihuahua | 1.355920e-02 | True | kelpie | 6.521800e-04 | True |
| 384 | 673343217010679808 | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | Chihuahua | 0.541408 | True | Italian_greyhound | 1.568910e-01 | True | miniature_pinscher | 6.955580e-02 | True |
| 385 | 673345638550134785 | https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg | 1 | hamster | 0.761025 | False | weasel | 6.936170e-02 | False | Pomeranian | 6.462700e-02 | True |
| 386 | 673350198937153538 | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | West_Highland_white_terrier | 0.119188 | True | quill | 1.040140e-01 | False | Maltese_dog | 9.394400e-02 | True |
| 387 | 673352124999274496 | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | golden_retriever | 0.672808 | True | Labrador_retriever | 2.758850e-01 | True | kuvasz | 2.225500e-02 | True |
| 388 | 673355879178194945 | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | Rottweiler | 0.529248 | True | miniature_pinscher | 1.682960e-01 | True | Appenzeller | 1.004520e-01 | True |
| 389 | 673359818736984064 | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | English_setter | 0.696568 | True | Brittany_spaniel | 1.040460e-01 | True | Ibizan_hound | 3.483250e-02 | True |
| 390 | 673363615379013632 | https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg | 1 | ox | 0.193431 | False | warthog | 1.238270e-01 | False | bison | 1.111770e-01 | False |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | teddy | 0.255210 | False | Christmas_stocking | 9.828520e-02 | False | pajama | 7.273510e-02 | False |
| 392 | 673580926094458881 | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | beagle | 0.985062 | True | basset | 6.417840e-03 | True | Walker_hound | 3.532590e-03 | True |
| 393 | 673583129559498752 | https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg | 1 | Arctic_fox | 0.153271 | False | golden_retriever | 1.139460e-01 | True | borzoi | 1.107180e-01 | True |
| 394 | 673612854080196609 | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | Newfoundland | 0.223101 | True | Leonberg | 1.111060e-01 | True | shovel | 8.562630e-02 | False |
| 395 | 673636718965334016 | https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg | 1 | wombat | 0.880257 | False | corn | 1.942070e-02 | False | pug | 1.904430e-02 | True |
| 396 | 673656262056419329 | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | bull_mastiff | 0.700625 | True | Rhodesian_ridgeback | 9.469770e-02 | True | Brabancon_griffon | 5.755940e-02 | True |
| 397 | 673662677122719744 | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | Labrador_retriever | 0.957670 | True | beagle | 1.241270e-02 | True | golden_retriever | 5.689130e-03 | True |
| 398 | 673680198160809984 | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | Samoyed | 0.989853 | True | Arctic_fox | 3.343750e-03 | False | chow | 2.801720e-03 | True |
| 399 | 673686845050527744 | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | Pekinese | 0.185903 | True | guinea_pig | 1.729510e-01 | False | pug | 1.661830e-01 | True |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | soft-coated_wheaten_terrier | 0.340806 | True | Sealyham_terrier | 2.348980e-01 | True | kuvasz | 2.034950e-01 | True |
| 401 | 673689733134946305 | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | Chesapeake_Bay_retriever | 0.382220 | True | American_Staffordshire_terrier | 3.501400e-01 | True | seat_belt | 9.887390e-02 | False |
| 402 | 673697980713705472 | https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg | 1 | porcupine | 0.151876 | False | hen | 1.113800e-01 | False | doormat | 5.893370e-02 | False |
| 403 | 673700254269775872 | https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg | 1 | water_bottle | 0.614536 | False | ashcan | 5.091140e-02 | False | bucket | 3.743190e-02 | False |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | Shih-Tzu | 0.165383 | True | Lhasa | 1.169770e-01 | True | Yorkshire_terrier | 6.389890e-02 | True |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | German_short-haired_pointer | 0.935771 | True | kelpie | 2.256100e-02 | True | Labrador_retriever | 8.846650e-03 | True |
| 406 | 673708611235921920 | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | golden_retriever | 0.936333 | True | cocker_spaniel | 2.421090e-02 | True | Labrador_retriever | 9.434850e-03 | True |
| 407 | 673709992831262724 | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | Chihuahua | 0.330171 | True | Siamese_cat | 1.815800e-01 | False | kelpie | 1.782270e-01 | True |
| 408 | 673711475735838725 | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | Maltese_dog | 0.607401 | True | toy_poodle | 1.438360e-01 | True | Sealyham_terrier | 6.390700e-02 | True |
| 409 | 673715861853720576 | https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg | 1 | suit | 0.404115 | False | bow_tie | 2.946830e-01 | False | Windsor_tie | 1.327010e-01 | False |
| 410 | 673887867907739649 | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | Brabancon_griffon | 0.216767 | True | Chihuahua | 1.909580e-01 | True | golden_retriever | 1.632880e-01 | True |
| 411 | 673906403526995968 | https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg | 1 | toilet_seat | 0.683319 | False | soft-coated_wheaten_terrier | 4.892770e-02 | True | Siberian_husky | 3.038600e-02 | True |
| 412 | 673919437611909120 | https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg | 1 | jack-o'-lantern | 0.172079 | False | schipperke | 1.159840e-01 | True | miniature_pinscher | 5.217500e-02 | True |
| 413 | 673956914389192708 | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | pug | 0.586161 | True | Brabancon_griffon | 8.274370e-02 | True | Chihuahua | 4.587770e-02 | True |
| 414 | 674008982932058114 | https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg | 1 | jigsaw_puzzle | 0.970810 | False | prayer_rug | 1.104820e-02 | False | quill | 8.431710e-03 | False |
| 415 | 674014384960745472 | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | Pembroke | 0.742320 | True | Cardigan | 8.493710e-02 | True | Eskimo_dog | 6.832090e-02 | True |
| 416 | 674019345211760640 | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | collie | 0.992732 | True | borzoi | 5.042900e-03 | True | Shetland_sheepdog | 1.724780e-03 | True |
| 417 | 674024893172875264 | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | Pomeranian | 0.648500 | True | Pekinese | 3.398350e-01 | True | Persian_cat | 6.448460e-03 | False |
| 418 | 674036086168010753 | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | toy_poodle | 0.685617 | True | miniature_poodle | 1.519360e-01 | True | Maltese_dog | 4.553110e-02 | True |
| 419 | 674038233588723717 | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | Eskimo_dog | 0.358459 | True | Norwegian_elkhound | 2.069630e-01 | True | malamute | 1.482360e-01 | True |
| 420 | 674042553264685056 | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | toy_poodle | 0.927975 | True | miniature_poodle | 6.894640e-02 | True | standard_poodle | 1.315750e-03 | True |
| 421 | 674045139690631169 | https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg | 1 | robin | 0.369661 | False | rhinoceros_beetle | 1.106070e-01 | False | European_fire_salamander | 4.317820e-02 | False |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | Shih-Tzu | 0.179777 | True | badger | 1.605800e-01 | False | three-toed_sloth | 1.321540e-01 | False |
| 423 | 674053186244734976 | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | Cardigan | 0.984725 | True | Pembroke | 8.730390e-03 | True | kelpie | 2.194770e-03 | True |
| 424 | 674063288070742018 | https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg | 1 | ostrich | 0.661176 | False | bearskin | 2.148790e-01 | False | swab | 6.445570e-02 | False |
| 425 | 674075285688614912 | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | Airedale | 0.305392 | True | Kerry_blue_terrier | 2.500140e-01 | True | Lakeland_terrier | 1.886680e-01 | True |
| 426 | 674082852460433408 | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | Pomeranian | 0.666957 | True | Shetland_sheepdog | 2.801940e-02 | True | ski_mask | 2.068270e-02 | False |
| 427 | 674255168825880576 | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | Eskimo_dog | 0.615741 | True | Siberian_husky | 1.995440e-01 | True | malamute | 1.791070e-01 | True |
| 428 | 674262580978937856 | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | Greater_Swiss_Mountain_dog | 0.519428 | True | boxer | 1.215000e-01 | True | Staffordshire_bullterrier | 1.144980e-01 | True |
| 429 | 674265582246694913 | https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg | 1 | slug | 0.998075 | False | ice_lolly | 9.840100e-04 | False | leafhopper | 9.720380e-05 | False |
| 430 | 674269164442398721 | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | pug | 0.622921 | True | Norwegian_elkhound | 4.865850e-02 | True | Cardigan | 1.696550e-02 | True |
| 431 | 674271431610523648 | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | German_shepherd | 0.991454 | True | malinois | 4.150230e-03 | True | bloodhound | 3.019130e-03 | True |
| 432 | 674291837063053312 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 433 | 674318007229923329 | https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg | 1 | porcupine | 0.846628 | False | hamster | 3.813610e-02 | False | echidna | 1.468040e-02 | False |
| 434 | 674372068062928900 | https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg | 1 | seashore | 0.346126 | False | American_alligator | 1.064040e-01 | False | sandbar | 4.934910e-02 | False |
| 435 | 674394782723014656 | https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg | 1 | toilet_tissue | 0.134983 | False | mosquito_net | 1.332470e-01 | False | Lakeland_terrier | 1.090990e-01 | True |
| 436 | 674410619106390016 | https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg | 1 | brown_bear | 0.698207 | False | sea_lion | 4.647450e-02 | False | beagle | 1.942680e-02 | True |
| 437 | 674416750885273600 | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | Chihuahua | 0.287201 | True | Boston_bull | 2.509200e-01 | True | whippet | 1.410120e-01 | True |
| 438 | 674422304705744896 | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | golden_retriever | 0.964497 | True | Labrador_retriever | 9.006180e-03 | True | tennis_ball | 7.138830e-03 | False |
| 439 | 674436901579923456 | https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg | 1 | acorn_squash | 0.375392 | False | Shih-Tzu | 1.054160e-01 | True | Lhasa | 7.283230e-02 | True |
| 440 | 674447403907457024 | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | Brabancon_griffon | 0.409909 | True | malinois | 2.446490e-01 | True | bull_mastiff | 7.481950e-02 | True |
| 441 | 674468880899788800 | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | chow | 0.526230 | True | Pomeranian | 2.836470e-01 | True | toy_poodle | 6.766540e-02 | True |
| 442 | 674632714662858753 | https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg | 1 | jellyfish | 0.432748 | False | goldfish | 1.131110e-01 | False | coral_reef | 8.704720e-02 | False |
| 443 | 674638615994089473 | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | Pomeranian | 0.846986 | True | chow | 1.420140e-01 | True | keeshond | 2.605040e-03 | True |
| 444 | 674644256330530816 | https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg | 1 | soccer_ball | 0.398102 | False | basset | 3.356920e-01 | True | cocker_spaniel | 7.294080e-02 | True |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | flat-coated_retriever | 0.837448 | True | groenendael | 8.616650e-02 | True | Labrador_retriever | 1.605220e-02 | True |
| 446 | 674664755118911488 | https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg | 1 | African_crocodile | 0.330625 | False | American_alligator | 7.535570e-02 | False | mink | 5.748070e-02 | False |
| 447 | 674670581682434048 | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | malamute | 0.180079 | True | Eskimo_dog | 1.780330e-01 | True | Siberian_husky | 7.796610e-02 | True |
| 448 | 674690135443775488 | https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg | 1 | tick | 0.242538 | False | nail | 2.125890e-01 | False | screw | 1.728380e-01 | False |
| 449 | 674737130913071104 | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | Pomeranian | 0.948537 | True | schipperke | 1.430990e-02 | True | Chihuahua | 8.120240e-03 | True |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | Dandie_Dinmont | 0.175915 | True | black-footed_ferret | 9.653430e-02 | False | toy_poodle | 6.414470e-02 | True |
| 451 | 674743008475090944 | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | Bernese_mountain_dog | 0.583054 | True | Shetland_sheepdog | 6.599040e-02 | True | Greater_Swiss_Mountain_dog | 6.523620e-02 | True |
| 452 | 674752233200820224 | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | vizsla | 0.665516 | True | redbone | 1.733660e-01 | True | basset | 1.347830e-01 | True |
| 453 | 674754018082705410 | https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg | 1 | seashore | 0.352321 | False | promontory | 1.317530e-01 | False | wreck | 9.559670e-02 | False |
| 454 | 674764817387900928 | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | Samoyed | 0.634695 | True | Arctic_fox | 3.098530e-01 | False | kuvasz | 1.964100e-02 | True |
| 455 | 674767892831932416 | https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg | 1 | shower_curtain | 0.238855 | False | sarong | 9.241410e-02 | False | kimono | 5.641250e-02 | False |
| 456 | 674774481756377088 | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | Chihuahua | 0.407016 | True | French_bulldog | 3.099780e-01 | True | Siamese_cat | 2.276770e-01 | False |
| 457 | 674781762103414784 | https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg | 1 | ocarina | 0.148975 | False | hamster | 6.898490e-02 | False | wool | 3.172850e-02 | False |
| 458 | 674788554665512960 | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | miniature_poodle | 0.349561 | True | toy_poodle | 1.547110e-01 | True | Maltese_dog | 1.342290e-01 | True |
| 459 | 674790488185167872 | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | Labrador_retriever | 0.801903 | True | Chesapeake_Bay_retriever | 1.935750e-01 | True | Rottweiler | 1.193050e-03 | True |
| 460 | 674793399141146624 | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | giant_schnauzer | 0.119693 | True | Afghan_hound | 7.276270e-02 | True | miniature_schnauzer | 6.378590e-02 | True |
| 461 | 674800520222154752 | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | Pembroke | 0.876479 | True | Cardigan | 9.691140e-02 | True | dingo | 9.195670e-03 | False |
| 462 | 674805413498527744 | https://pbs.twimg.com/ext_tw_video_thumb/67480... | 1 | English_springer | 0.594467 | True | cocker_spaniel | 3.899940e-01 | True | Welsh_springer_spaniel | 7.096110e-03 | True |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | Rottweiler | 0.591829 | True | Doberman | 2.045440e-01 | True | black-and-tan_coonhound | 7.860190e-02 | True |
| 464 | 675003128568291329 | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | Pembroke | 0.655279 | True | Pomeranian | 1.041640e-01 | True | Cardigan | 5.281770e-02 | True |
| 465 | 675006312288268288 | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | boxer | 0.654697 | True | space_heater | 4.338880e-02 | False | beagle | 4.284760e-02 | True |
| 466 | 675015141583413248 | https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg | 1 | street_sign | 0.290091 | False | golden_retriever | 2.583720e-01 | True | sandbar | 1.321730e-01 | False |
| 467 | 675047298674663426 | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | Samoyed | 0.978007 | True | chow | 7.121240e-03 | True | Pomeranian | 6.397830e-03 | True |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | dalmatian | 0.989519 | True | English_setter | 5.257670e-03 | True | German_short-haired_pointer | 1.442830e-03 | True |
| 469 | 675111688094527488 | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | Labrador_retriever | 0.631501 | True | Brittany_spaniel | 1.019270e-01 | True | Chesapeake_Bay_retriever | 6.264980e-02 | True |
| 470 | 675113801096802304 | https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg | 1 | bow | 0.168020 | False | quill | 1.088070e-01 | False | joystick | 4.331180e-02 | False |
| 471 | 675135153782571009 | https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg | 1 | stove | 0.587507 | False | rotisserie | 5.171310e-02 | False | microwave | 2.072530e-02 | False |
| 472 | 675145476954566656 | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | Labrador_retriever | 0.458746 | True | Great_Dane | 2.355040e-01 | True | Staffordshire_bullterrier | 1.168640e-01 | True |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | dingo | 0.288447 | False | Cardigan | 2.299440e-01 | True | Pembroke | 1.904070e-01 | True |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | golden_retriever | 0.949215 | True | Labrador_retriever | 1.676540e-02 | True | flat-coated_retriever | 1.063730e-02 | True |
| 475 | 675149409102012420 | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | chow | 0.999876 | True | Tibetan_mastiff | 5.867490e-05 | True | Tibetan_terrier | 2.877850e-05 | True |
| 476 | 675153376133427200 | https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg | 1 | paper_towel | 0.327957 | False | mailbox | 9.602690e-02 | False | seat_belt | 3.499510e-02 | False |
| 477 | 675166823650848770 | https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg | 1 | llama | 0.284394 | False | standard_poodle | 1.325690e-01 | True | teddy | 1.279750e-01 | False |
| 478 | 675334060156301312 | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | Pembroke | 0.773135 | True | Cardigan | 1.168100e-01 | True | chow | 3.903620e-02 | True |
| 479 | 675349384339542016 | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | borzoi | 0.866367 | True | Saluki | 1.220790e-01 | True | Irish_wolfhound | 4.019720e-03 | True |
| 480 | 675354435921575936 | https://pbs.twimg.com/ext_tw_video_thumb/67535... | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 481 | 675362609739206656 | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | Labrador_retriever | 0.479008 | True | ice_bear | 2.182890e-01 | False | kuvasz | 1.399110e-01 | True |
| 482 | 675372240448454658 | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | Chihuahua | 0.416385 | True | West_Highland_white_terrier | 1.029330e-01 | True | Samoyed | 8.729950e-02 | True |
| 483 | 675432746517426176 | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | Labrador_retriever | 0.986548 | True | golden_retriever | 8.861850e-03 | True | Chihuahua | 6.935280e-04 | True |
| 484 | 675483430902214656 | https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg | 1 | box_turtle | 0.543706 | False | terrapin | 2.026000e-01 | False | loggerhead | 7.112150e-02 | False |
| 485 | 675489971617296384 | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | West_Highland_white_terrier | 0.139613 | True | seat_belt | 1.186470e-01 | False | Old_English_sheepdog | 9.395220e-02 | True |
| 486 | 675497103322386432 | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | vizsla | 0.519589 | True | miniature_pinscher | 6.477120e-02 | True | Rhodesian_ridgeback | 6.149130e-02 | True |
| 487 | 675501075957489664 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | Scottish_deerhound | 0.240591 | True | groenendael | 1.569160e-01 | True | flat-coated_retriever | 9.089940e-02 | True |
| 489 | 675522403582218240 | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | cocker_spaniel | 0.299708 | True | golden_retriever | 2.636650e-01 | True | Irish_setter | 8.032330e-02 | True |
| 490 | 675531475945709568 | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | Pembroke | 0.918441 | True | Cardigan | 2.733950e-02 | True | Siberian_husky | 2.022100e-02 | True |
| 491 | 675534494439489536 | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | chow | 0.749368 | True | schipperke | 1.337380e-01 | True | Newfoundland | 4.991380e-02 | True |
| 492 | 675706639471788032 | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | English_springer | 0.990300 | True | Welsh_springer_spaniel | 2.079910e-03 | True | cocker_spaniel | 2.013780e-03 | True |
| 493 | 675707330206547968 | https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg | 1 | bath_towel | 0.721933 | False | Staffordshire_bullterrier | 5.934420e-02 | True | bagel | 3.570160e-02 | False |
| 494 | 675710890956750848 | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | standard_schnauzer | 0.441427 | True | miniature_schnauzer | 2.488850e-01 | True | Sealyham_terrier | 1.649670e-01 | True |
| 495 | 675740360753160193 | https://pbs.twimg.com/ext_tw_video_thumb/67574... | 1 | golden_retriever | 0.800495 | True | kuvasz | 9.775640e-02 | True | Saluki | 6.841460e-02 | True |
| 496 | 675781562965868544 | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | Maltese_dog | 0.921968 | True | West_Highland_white_terrier | 1.781070e-02 | True | toy_poodle | 1.355540e-02 | True |
| 497 | 675798442703122432 | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | beagle | 0.681218 | True | basset | 1.251210e-01 | True | boxer | 8.039820e-02 | True |
| 498 | 675820929667219457 | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | basset | 0.556373 | True | beagle | 2.016750e-01 | True | bloodhound | 1.108480e-01 | True |
| 499 | 675822767435051008 | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | Pomeranian | 0.460710 | True | chow | 2.027650e-01 | True | Pekinese | 1.332660e-01 | True |
| 500 | 675845657354215424 | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | pug | 0.883952 | True | Boston_bull | 1.105680e-02 | True | French_bulldog | 9.839810e-03 | True |
| 501 | 675853064436391936 | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | Labrador_retriever | 0.868367 | True | golden_retriever | 4.330460e-02 | True | vizsla | 2.820720e-02 | True |
| 502 | 675870721063669760 | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | golden_retriever | 0.263892 | True | Welsh_springer_spaniel | 1.841930e-01 | True | beagle | 1.822410e-01 | True |
| 503 | 675878199931371520 | https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg | 1 | wood_rabbit | 0.785756 | False | hare | 1.181810e-01 | False | Cardigan | 4.362710e-02 | True |
| 504 | 675888385639251968 | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | West_Highland_white_terrier | 0.672117 | True | Old_English_sheepdog | 1.461470e-01 | True | komondor | 2.314140e-02 | True |
| 505 | 675891555769696257 | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | Italian_greyhound | 0.305637 | True | whippet | 2.320570e-01 | True | Great_Dane | 1.178060e-01 | True |
| 506 | 675898130735476737 | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | Labrador_retriever | 0.407430 | True | malinois | 7.703670e-02 | True | pug | 7.459730e-02 | True |
| 507 | 676089483918516224 | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | bull_mastiff | 0.743808 | True | boxer | 1.066970e-01 | True | American_Staffordshire_terrier | 4.233530e-02 | True |
| 508 | 676098748976615425 | https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg | 1 | walking_stick | 0.162179 | False | sandal | 1.290860e-01 | False | purse | 8.141190e-02 | False |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | Shih-Tzu | 0.225848 | True | Norfolk_terrier | 1.868730e-01 | True | Irish_terrier | 1.069870e-01 | True |
| 510 | 676146341966438401 | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | Irish_water_spaniel | 0.388332 | True | standard_poodle | 2.841210e-01 | True | greenhouse | 3.486810e-02 | False |
| 511 | 676191832485810177 | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | Chihuahua | 0.376741 | True | Italian_greyhound | 1.731140e-01 | True | muzzle | 7.148510e-02 | False |
| 512 | 676215927814406144 | https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg | 1 | hamster | 0.999484 | False | guinea_pig | 1.582170e-04 | False | broccoli | 6.091100e-05 | False |
| 513 | 676219687039057920 | https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg | 1 | bubble | 0.997556 | False | leafhopper | 1.589610e-04 | False | whippet | 1.324640e-04 | True |
| 514 | 676237365392908289 | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | French_bulldog | 0.961996 | True | Chihuahua | 2.179300e-02 | True | Boston_bull | 6.916290e-03 | True |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | teddy | 0.098283 | False | toy_poodle | 9.802930e-02 | True | shopping_basket | 7.785210e-02 | False |
| 516 | 676430933382295552 | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | golden_retriever | 0.583875 | True | cocker_spaniel | 2.036710e-01 | True | Labrador_retriever | 3.612170e-02 | True |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | Maltese_dog | 0.579472 | True | toy_poodle | 1.334460e-01 | True | Shih-Tzu | 9.439660e-02 | True |
| 518 | 676470639084101634 | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | golden_retriever | 0.790386 | True | borzoi | 2.288510e-02 | True | dingo | 1.534340e-02 | False |
| 519 | 676496375194980353 | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | pug | 0.985387 | True | Norwegian_elkhound | 4.416900e-03 | True | French_bulldog | 3.892870e-03 | True |
| 520 | 676533798876651520 | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | chow | 0.265274 | True | ice_bear | 1.676140e-01 | False | fur_coat | 1.175060e-01 | False |
| 521 | 676575501977128964 | https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg | 1 | feather_boa | 0.424106 | False | Yorkshire_terrier | 7.314430e-02 | True | Shetland_sheepdog | 5.759760e-02 | True |
| 522 | 676582956622721024 | https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg | 1 | seat_belt | 0.790028 | False | Boston_bull | 1.963070e-01 | True | French_bulldog | 1.242890e-02 | True |
| 523 | 676588346097852417 | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | Boston_bull | 0.976577 | True | French_bulldog | 1.432370e-02 | True | Chihuahua | 2.301920e-03 | True |
| 524 | 676603393314578432 | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | whippet | 0.877021 | True | Great_Dane | 3.418190e-02 | True | boxer | 2.840400e-02 | True |
| 525 | 676606785097199616 | https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg | 1 | Loafer | 0.202999 | False | doormat | 2.004110e-01 | False | malinois | 1.423000e-01 | True |
| 526 | 676613908052996102 | https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg | 1 | book_jacket | 0.493790 | False | Doberman | 9.642280e-02 | True | miniature_pinscher | 7.064670e-02 | True |
| 527 | 676617503762681856 | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | Chihuahua | 0.841084 | True | Pomeranian | 1.205300e-01 | True | Pekinese | 6.600340e-03 | True |
| 528 | 676776431406465024 | https://pbs.twimg.com/ext_tw_video_thumb/67677... | 1 | doormat | 0.201346 | False | dishwasher | 1.917490e-01 | False | microwave | 3.811000e-02 | False |
| 529 | 676811746707918848 | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | Chihuahua | 0.440916 | True | Pomeranian | 3.458060e-01 | True | cocker_spaniel | 6.033120e-02 | True |
| 530 | 676819651066732545 | https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg | 2 | rain_barrel | 0.625555 | False | barrel | 1.383830e-01 | False | Labrador_retriever | 3.946460e-02 | True |
| 531 | 676821958043033607 | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | Great_Pyrenees | 0.869804 | True | kuvasz | 7.981430e-02 | True | standard_poodle | 1.326300e-02 | True |
| 532 | 676864501615042560 | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | Chesapeake_Bay_retriever | 0.371146 | True | water_buffalo | 9.959630e-02 | False | Weimaraner | 4.896790e-02 | True |
| 533 | 676897532954456065 | https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg | 1 | hamster | 0.628255 | False | guinea_pig | 3.186460e-01 | False | macaque | 1.305820e-02 | False |
| 534 | 676936541936185344 | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | Chesapeake_Bay_retriever | 0.545286 | True | Norwegian_elkhound | 8.148200e-02 | True | space_heater | 4.739110e-02 | False |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 1.546300e-01 | False | weasel | 9.762550e-02 | False |
| 536 | 676946864479084545 | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | Pekinese | 0.752707 | True | golden_retriever | 5.565460e-02 | True | Great_Pyrenees | 4.101780e-02 | True |
| 537 | 676948236477857792 | https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg | 1 | guenon | 0.611603 | False | macaque | 1.351760e-01 | False | squirrel_monkey | 8.324730e-02 | False |
| 538 | 676949632774234114 | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | Welsh_springer_spaniel | 0.206479 | True | Saint_Bernard | 1.393390e-01 | True | boxer | 1.146060e-01 | True |
| 539 | 676957860086095872 | https://pbs.twimg.com/ext_tw_video_thumb/67695... | 1 | Labrador_retriever | 0.772423 | True | beagle | 5.590170e-02 | True | golden_retriever | 3.115190e-02 | True |
| 540 | 676975532580409345 | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | malamute | 0.363257 | True | Siberian_husky | 2.458620e-01 | True | Eskimo_dog | 1.255470e-01 | True |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | English_setter | 0.282396 | True | Shih-Tzu | 8.411190e-02 | True | Old_English_sheepdog | 5.953800e-02 | True |
| 542 | 677228873407442944 | https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg | 1 | common_iguana | 0.566338 | False | tennis_ball | 1.546460e-01 | False | green_lizard | 4.497580e-02 | False |
| 543 | 677269281705472000 | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | Shetland_sheepdog | 0.656616 | True | collie | 1.954050e-01 | True | German_shepherd | 1.310320e-02 | True |
| 544 | 677301033169788928 | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | Japanese_spaniel | 0.661178 | True | Pekinese | 1.501190e-01 | True | Chihuahua | 1.197200e-01 | True |
| 545 | 677314812125323265 | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | Blenheim_spaniel | 0.924127 | True | Japanese_spaniel | 5.479010e-02 | True | Chihuahua | 8.204040e-03 | True |
| 546 | 677328882937298944 | https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg | 1 | water_buffalo | 0.424250 | False | kelpie | 2.905410e-02 | True | Staffordshire_bullterrier | 2.846970e-02 | True |
| 547 | 677331501395156992 | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | beagle | 0.313464 | True | boxer | 2.185030e-01 | True | French_bulldog | 1.064620e-01 | True |
| 548 | 677334615166730240 | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | Lakeland_terrier | 0.859392 | True | Airedale | 6.729170e-02 | True | Irish_water_spaniel | 4.953060e-02 | True |
| 549 | 677530072887205888 | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | Staffordshire_bullterrier | 0.689259 | True | Norwegian_elkhound | 2.612100e-02 | True | American_Staffordshire_terrier | 2.307470e-02 | True |
| 550 | 677547928504967168 | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | American_Staffordshire_terrier | 0.914978 | True | Staffordshire_bullterrier | 8.439530e-02 | True | boxer | 4.616630e-04 | True |
| 551 | 677557565589463040 | https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg | 1 | seat_belt | 0.277257 | False | Shih-Tzu | 2.490170e-01 | True | Pekinese | 2.092130e-01 | True |
| 552 | 677565715327688705 | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | basset | 0.397295 | True | Welsh_springer_spaniel | 1.995540e-01 | True | purse | 1.056410e-01 | False |
| 553 | 677573743309385728 | https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg | 2 | patio | 0.535070 | False | folding_chair | 8.041920e-02 | False | parallel_bars | 3.479650e-02 | False |
| 554 | 677644091929329666 | https://pbs.twimg.com/ext_tw_video_thumb/67764... | 1 | Chihuahua | 0.626236 | True | Italian_greyhound | 1.284830e-01 | True | swing | 5.984040e-02 | False |
| 555 | 677662372920729601 | https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg | 1 | cowboy_hat | 0.256110 | False | trench_coat | 1.270860e-01 | False | cloak | 7.143890e-02 | False |
| 556 | 677673981332312066 | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | Maltese_dog | 0.817908 | True | Angora | 7.780510e-02 | False | Pomeranian | 2.218420e-02 | True |
| 557 | 677687604918272002 | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | Pembroke | 0.573047 | True | sunglasses | 1.267580e-01 | False | golden_retriever | 1.080470e-01 | True |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | Shih-Tzu | 0.916645 | True | Lhasa | 5.788340e-02 | True | Pekinese | 2.012580e-02 | True |
| 559 | 677700003327029250 | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | Siberian_husky | 0.120849 | True | junco | 7.920560e-02 | False | malamute | 6.308750e-02 | True |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | teddy | 0.662908 | False | crib | 3.189120e-02 | False | chow | 2.543780e-02 | True |
| 561 | 677895101218201600 | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | dalmatian | 0.550702 | True | kuvasz | 6.022640e-02 | True | Great_Pyrenees | 5.863100e-02 | True |
| 562 | 677918531514703872 | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | Eskimo_dog | 0.199347 | True | dalmatian | 1.532250e-01 | True | American_Staffordshire_terrier | 1.077980e-01 | True |
| 563 | 678021115718029313 | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | miniature_pinscher | 0.822048 | True | Doberman | 9.608450e-02 | True | Rottweiler | 3.270930e-02 | True |
| 564 | 678255464182861824 | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | Chihuahua | 0.613819 | True | Yorkshire_terrier | 1.279310e-01 | True | Pomeranian | 6.212430e-02 | True |
| 565 | 678278586130948096 | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | Maltese_dog | 0.897841 | True | Lhasa | 3.571750e-02 | True | Tibetan_terrier | 1.710750e-02 | True |
| 566 | 678334497360859136 | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | Norfolk_terrier | 0.378643 | True | golden_retriever | 9.559390e-02 | True | kelpie | 8.530920e-02 | True |
| 567 | 678341075375947776 | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | golden_retriever | 0.853284 | True | cocker_spaniel | 2.622980e-02 | True | Labrador_retriever | 2.412280e-02 | True |
| 568 | 678380236862578688 | https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg | 1 | dogsled | 0.088540 | False | snowmobile | 5.729100e-02 | False | Samoyed | 4.760140e-02 | True |
| 569 | 678389028614488064 | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | miniature_pinscher | 0.516284 | True | kelpie | 2.274020e-01 | True | vizsla | 1.032460e-01 | True |
| 570 | 678396796259975168 | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | Pembroke | 0.956180 | True | Cardigan | 3.180310e-02 | True | Chihuahua | 6.276500e-03 | True |
| 571 | 678399652199309312 | https://pbs.twimg.com/ext_tw_video_thumb/67839... | 1 | swing | 0.929196 | False | Bedlington_terrier | 1.504720e-02 | True | Great_Pyrenees | 1.403890e-02 | True |
| 572 | 678410210315247616 | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | schipperke | 0.145877 | True | Labrador_retriever | 9.835380e-02 | True | kelpie | 9.739340e-02 | True |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | Maltese_dog | 0.759945 | True | toy_poodle | 1.011940e-01 | True | Shih-Tzu | 5.603740e-02 | True |
| 574 | 678446151570427904 | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | Staffordshire_bullterrier | 0.284492 | True | Rottweiler | 1.894340e-01 | True | American_Staffordshire_terrier | 1.894300e-01 | True |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | Labrador_retriever | 0.338757 | True | flat-coated_retriever | 3.044700e-01 | True | chest | 9.339230e-02 | False |
| 576 | 678675843183484930 | https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg | 1 | maze | 0.339850 | False | streetcar | 9.968780e-02 | False | sundial | 8.480770e-02 | False |
| 577 | 678740035362037760 | https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg | 1 | seat_belt | 0.787164 | False | sunglasses | 4.573870e-02 | False | beagle | 2.252510e-02 | True |
| 578 | 678755239630127104 | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | malamute | 0.606654 | True | Border_collie | 1.938310e-01 | True | collie | 4.837810e-02 | True |
| 579 | 678764513869611008 | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | Irish_terrier | 0.696646 | True | Australian_terrier | 7.496160e-02 | True | Irish_setter | 6.390120e-02 | True |
| 580 | 678767140346941444 | https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg | 1 | harp | 0.821120 | False | window_screen | 2.512080e-02 | False | mosquito_net | 1.671560e-02 | False |
| 581 | 678774928607469569 | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | Pembroke | 0.194681 | True | toy_poodle | 1.218210e-01 | True | Pomeranian | 9.684300e-02 | True |
| 582 | 678798276842360832 | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | Airedale | 0.583122 | True | silky_terrier | 1.295670e-01 | True | Lakeland_terrier | 9.472660e-02 | True |
| 583 | 678800283649069056 | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | Labrador_retriever | 0.213673 | True | beagle | 1.462350e-01 | True | Airedale | 1.227010e-01 | True |
| 584 | 678969228704284672 | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | Labrador_retriever | 0.680251 | True | Chesapeake_Bay_retriever | 2.016970e-01 | True | golden_retriever | 1.967590e-02 | True |
| 585 | 678991772295516161 | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | Eskimo_dog | 0.330216 | True | Siberian_husky | 1.870030e-01 | True | Chihuahua | 1.014200e-01 | True |
| 586 | 679047485189439488 | https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg | 1 | panpipe | 0.962572 | False | bannister | 2.524820e-02 | False | golden_retriever | 2.930350e-03 | True |
| 587 | 679062614270468097 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 588 | 679111216690831360 | https://pbs.twimg.com/ext_tw_video_thumb/67911... | 1 | kelpie | 0.189423 | True | beagle | 1.219880e-01 | True | basset | 1.211710e-01 | True |
| 589 | 679132435750195208 | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | Scottish_deerhound | 0.194610 | True | Irish_wolfhound | 1.628550e-01 | True | giant_schnauzer | 1.598370e-01 | True |
| 590 | 679148763231985668 | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | Italian_greyhound | 0.302685 | True | hair_slide | 1.242810e-01 | False | Afghan_hound | 5.984600e-02 | True |
| 591 | 679158373988876288 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | toy_poodle | 0.621780 | True | miniature_poodle | 1.978190e-01 | True | soft-coated_wheaten_terrier | 4.674500e-02 | True |
| 593 | 679475951516934144 | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | Maltese_dog | 0.145742 | True | toy_poodle | 1.394070e-01 | True | West_Highland_white_terrier | 1.088210e-01 | True |
| 594 | 679503373272485890 | https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg | 1 | porcupine | 0.999846 | False | meerkat | 7.191480e-05 | False | echidna | 4.447290e-05 | False |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | Chihuahua | 0.761972 | True | black-footed_ferret | 1.506050e-01 | False | squirrel_monkey | 2.814790e-02 | False |
| 596 | 679527802031484928 | https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg | 1 | mailbox | 0.336393 | False | cannon | 1.589360e-01 | False | cuirass | 5.264710e-02 | False |
| 597 | 679530280114372609 | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | dalmatian | 0.750256 | True | jaguar | 1.690070e-01 | False | zebra | 6.481490e-03 | False |
| 598 | 679722016581222400 | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | boxer | 0.459604 | True | Boston_bull | 1.979130e-01 | True | French_bulldog | 8.702250e-02 | True |
| 599 | 679729593985699840 | https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg | 1 | wallaby | 0.164215 | False | West_Highland_white_terrier | 9.351480e-02 | True | ashcan | 6.727830e-02 | False |
| 600 | 679736210798047232 | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | French_bulldog | 0.319139 | True | Chihuahua | 1.540880e-01 | True | Cardigan | 1.176880e-01 | True |
| 601 | 679777920601223168 | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | bloodhound | 0.528819 | True | bull_mastiff | 4.201190e-01 | True | French_bulldog | 9.480590e-03 | True |
| 602 | 679828447187857408 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 603 | 679844490799091713 | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | Airedale | 0.903832 | True | Border_terrier | 3.471260e-02 | True | toy_poodle | 2.137800e-02 | True |
| 604 | 679854723806179328 | https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg | 1 | llama | 0.887963 | False | ram | 9.502070e-02 | False | chow | 2.307390e-03 | True |
| 605 | 679862121895714818 | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | EntleBucher | 0.523206 | True | Greater_Swiss_Mountain_dog | 4.316570e-01 | True | Appenzeller | 4.420790e-02 | True |
| 606 | 679877062409191424 | https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg | 1 | hog | 0.809466 | False | hay | 6.017780e-02 | False | lumbermill | 1.648340e-02 | False |
| 607 | 680055455951884288 | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | Samoyed | 0.995466 | True | Great_Pyrenees | 1.833950e-03 | True | Pomeranian | 6.669490e-04 | True |
| 608 | 680070545539371008 | https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg | 1 | earthstar | 0.127701 | False | Shih-Tzu | 1.218110e-01 | True | bubble | 1.178200e-01 | False |
| 609 | 680085611152338944 | https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg | 3 | pillow | 0.778113 | False | apron | 9.502280e-02 | False | wallet | 4.932580e-02 | False |
| 610 | 680100725817409536 | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | golden_retriever | 0.698961 | True | chow | 1.459710e-01 | True | Pomeranian | 3.488800e-02 | True |
| 611 | 680115823365742593 | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | pug | 0.999365 | True | French_bulldog | 5.436150e-04 | True | Boston_bull | 2.815280e-05 | True |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | Maltese_dog | 0.199121 | True | West_Highland_white_terrier | 1.978970e-01 | True | Shih-Tzu | 1.571300e-01 | True |
| 613 | 680145970311643136 | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | miniature_poodle | 0.457117 | True | toy_poodle | 2.264810e-01 | True | Maltese_dog | 6.768150e-02 | True |
| 614 | 680161097740095489 | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | bluetick | 0.268681 | True | miniature_pinscher | 1.256520e-01 | True | English_setter | 8.937270e-02 | True |
| 615 | 680176173301628928 | https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg | 1 | Christmas_stocking | 0.207547 | False | mask | 1.938800e-01 | False | feather_boa | 1.527380e-01 | False |
| 616 | 680191257256136705 | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | Brittany_spaniel | 0.733253 | True | Welsh_springer_spaniel | 2.516340e-01 | True | English_springer | 9.243210e-03 | True |
| 617 | 680206703334408192 | https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg | 1 | Christmas_stocking | 0.149758 | False | cloak | 1.288300e-01 | False | teddy | 1.091290e-01 | False |
| 618 | 680221482581123072 | https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg | 1 | bubble | 0.240173 | False | hen | 1.462220e-01 | False | abaya | 1.393420e-01 | False |
| 619 | 680440374763077632 | https://pbs.twimg.com/ext_tw_video_thumb/68044... | 1 | space_heater | 0.920367 | False | radiator | 4.993320e-02 | False | electric_fan | 6.719030e-03 | False |
| 620 | 680473011644985345 | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | Lakeland_terrier | 0.796694 | True | West_Highland_white_terrier | 1.387090e-01 | True | Norwich_terrier | 1.625340e-02 | True |
| 621 | 680494726643068929 | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | kuvasz | 0.438627 | True | Samoyed | 1.116220e-01 | True | Great_Pyrenees | 6.406080e-02 | True |
| 622 | 680497766108381184 | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | Chihuahua | 0.538354 | True | muzzle | 8.428870e-02 | False | ski_mask | 7.669010e-02 | False |
| 623 | 680583894916304897 | https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg | 1 | tub | 0.889801 | False | bathtub | 3.235110e-02 | False | hippopotamus | 1.417730e-02 | False |
| 624 | 680609293079592961 | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | French_bulldog | 0.700764 | True | Chihuahua | 7.238960e-02 | True | American_Staffordshire_terrier | 3.961870e-02 | True |
| 625 | 680798457301471234 | https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg | 1 | ram | 0.499761 | False | hog | 2.837950e-01 | False | ox | 6.745510e-02 | False |
| 626 | 680801747103793152 | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | pug | 0.996720 | True | Labrador_retriever | 1.438790e-03 | True | Staffordshire_bullterrier | 5.176030e-04 | True |
| 627 | 680836378243002368 | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | Pembroke | 0.427781 | True | Shetland_sheepdog | 1.606690e-01 | True | Pomeranian | 1.112500e-01 | True |
| 628 | 680889648562991104 | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | Shetland_sheepdog | 0.876337 | True | collie | 7.833100e-02 | True | Pomeranian | 2.040750e-02 | True |
| 629 | 680913438424612864 | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | Pomeranian | 0.615678 | True | golden_retriever | 1.264550e-01 | True | Chihuahua | 8.718360e-02 | True |
| 630 | 680934982542561280 | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | Labrador_retriever | 0.784398 | True | Siberian_husky | 5.592510e-02 | True | beagle | 2.275010e-02 | True |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | soft-coated_wheaten_terrier | 0.289598 | True | West_Highland_white_terrier | 1.571950e-01 | True | toy_poodle | 7.443470e-02 | True |
| 632 | 680959110691590145 | https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg | 2 | carousel | 0.500992 | False | feather_boa | 6.439000e-02 | False | pug | 4.435650e-02 | True |
| 633 | 680970795137544192 | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | pug | 0.713102 | True | whippet | 5.742630e-02 | True | quilt | 5.601810e-02 | False |
| 634 | 681193455364796417 | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | Pomeranian | 0.992619 | True | keeshond | 4.356450e-03 | True | schipperke | 8.140000e-04 | True |
| 635 | 681231109724700672 | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | Irish_setter | 0.406047 | True | cocker_spaniel | 3.456460e-01 | True | Airedale | 1.479120e-01 | True |
| 636 | 681242418453299201 | https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg | 1 | motor_scooter | 0.255934 | False | rifle | 1.452020e-01 | False | assault_rifle | 9.700010e-02 | False |
| 637 | 681261549936340994 | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | Tibetan_terrier | 0.382101 | True | miniature_poodle | 9.542940e-02 | True | Maltese_dog | 6.573770e-02 | True |
| 638 | 681281657291280384 | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | Saint_Bernard | 0.998830 | True | Pekinese | 3.913120e-04 | True | Great_Pyrenees | 2.235820e-04 | True |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | Lhasa | 0.482401 | True | Shih-Tzu | 1.136720e-01 | True | Pomeranian | 9.622860e-02 | True |
| 640 | 681302363064414209 | https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg | 1 | frilled_lizard | 0.326259 | False | tailed_frog | 1.045390e-01 | False | axolotl | 7.247930e-02 | False |
| 641 | 681320187870711809 | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | Samoyed | 0.362596 | True | Eskimo_dog | 2.453950e-01 | True | Siberian_husky | 1.082320e-01 | True |
| 642 | 681339448655802368 | https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg | 1 | seat_belt | 0.532441 | False | Labrador_retriever | 9.461490e-02 | True | kuvasz | 8.986300e-02 | True |
| 643 | 681523177663676416 | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | Norfolk_terrier | 0.205067 | True | German_shepherd | 1.604390e-01 | True | chow | 1.562340e-01 | True |
| 644 | 681579835668455424 | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | Rottweiler | 0.760671 | True | Labrador_retriever | 9.658470e-02 | True | Staffordshire_bullterrier | 4.033260e-02 | True |
| 645 | 681610798867845120 | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | toy_poodle | 0.821704 | True | miniature_poodle | 1.160420e-01 | True | Yorkshire_terrier | 1.484720e-02 | True |
| 646 | 681654059175129088 | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | Pomeranian | 0.800538 | True | chow | 1.468920e-01 | True | Pekinese | 3.761250e-02 | True |
| 647 | 681679526984871937 | https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg | 1 | birdhouse | 0.472351 | False | teddy | 1.420580e-01 | False | pot | 3.290590e-02 | False |
| 648 | 681694085539872773 | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | toy_poodle | 0.920992 | True | miniature_poodle | 6.085720e-02 | True | Maltese_dog | 6.063720e-03 | True |
| 649 | 681891461017812993 | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | Chihuahua | 0.203570 | True | doormat | 1.343160e-01 | False | toy_terrier | 8.448230e-02 | True |
| 650 | 681981167097122816 | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | Labrador_retriever | 0.452577 | True | golden_retriever | 4.034200e-01 | True | beagle | 6.948570e-02 | True |
| 651 | 682003177596559360 | https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg | 1 | triceratops | 0.249872 | False | chimpanzee | 6.092930e-02 | False | mask | 5.022100e-02 | False |
| 652 | 682032003584274432 | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | schipperke | 0.997953 | True | groenendael | 6.764350e-04 | True | miniature_pinscher | 2.112460e-04 | True |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | teddy | 0.364095 | False | doormat | 1.192430e-01 | False | toyshop | 3.512710e-02 | False |
| 654 | 682059653698686977 | https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg | 2 | jigsaw_puzzle | 0.995873 | False | Siamese_cat | 7.808850e-04 | False | pizza | 4.324800e-04 | False |
| 655 | 682242692827447297 | https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg | 1 | snorkel | 0.504983 | False | loggerhead | 3.452980e-01 | False | scuba_diver | 7.475390e-02 | False |
| 656 | 682259524040966145 | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | Siberian_husky | 0.439670 | True | Eskimo_dog | 3.404740e-01 | True | malamute | 1.012530e-01 | True |
| 657 | 682303737705140231 | https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg | 1 | seat_belt | 0.997659 | False | Lakeland_terrier | 1.730920e-03 | True | Airedale | 2.036100e-04 | True |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | curly-coated_retriever | 0.482288 | True | flat-coated_retriever | 3.152860e-01 | True | Great_Dane | 6.217890e-02 | True |
| 659 | 682393905736888321 | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | vizsla | 0.657275 | True | paddle | 9.028640e-02 | False | Rhodesian_ridgeback | 4.822830e-02 | True |
| 660 | 682406705142087680 | https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg | 1 | wombat | 0.709344 | False | koala | 1.697580e-01 | False | beaver | 7.943340e-02 | False |
| 661 | 682429480204398592 | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | whippet | 0.594701 | True | Italian_greyhound | 3.140910e-01 | True | Mexican_hairless | 3.777330e-02 | True |
| 662 | 682638830361513985 | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | English_springer | 0.440781 | True | Cardigan | 4.111820e-01 | True | Border_collie | 2.241220e-02 | True |
| 663 | 682662431982772225 | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | beagle | 0.413824 | True | Cardigan | 2.635530e-01 | True | basset | 1.676180e-01 | True |
| 664 | 682697186228989953 | https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg | 1 | bald_eagle | 0.097232 | False | torch | 9.662150e-02 | False | cliff | 9.038550e-02 | False |
| 665 | 682750546109968385 | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | English_setter | 0.947198 | True | English_springer | 3.112770e-02 | True | Brittany_spaniel | 5.512470e-03 | True |
| 666 | 682788441537560576 | https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg | 1 | toyshop | 0.375610 | False | orange | 9.453760e-02 | False | teddy | 3.980820e-02 | False |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | dingo | 0.278600 | False | Chihuahua | 1.552070e-01 | True | loupe | 1.535980e-01 | False |
| 668 | 683030066213818368 | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | boxer | 0.722218 | True | bull_mastiff | 1.938040e-01 | True | French_bulldog | 5.519370e-02 | True |
| 669 | 683078886620553216 | https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg | 1 | koala | 0.141432 | False | Eskimo_dog | 9.404420e-02 | True | wallaby | 8.523650e-02 | False |
| 670 | 683098815881154561 | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | golden_retriever | 0.889848 | True | kuvasz | 5.300820e-02 | True | Labrador_retriever | 3.788120e-02 | True |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | cocker_spaniel | 0.901392 | True | soft-coated_wheaten_terrier | 2.860480e-02 | True | miniature_schnauzer | 1.780540e-02 | True |
| 672 | 683142553609318400 | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | Leonberg | 0.605851 | True | chow | 1.834700e-01 | True | German_shepherd | 7.966190e-02 | True |
| 673 | 683357973142474752 | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | Pembroke | 0.406509 | True | Cardigan | 1.548540e-01 | True | Siberian_husky | 1.363660e-01 | True |
| 674 | 683391852557561860 | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | French_bulldog | 0.992833 | True | Boston_bull | 4.748630e-03 | True | pug | 1.391690e-03 | True |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | Lakeland_terrier | 0.303512 | True | soft-coated_wheaten_terrier | 2.114240e-01 | True | golden_retriever | 1.707250e-01 | True |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | Italian_greyhound | 0.399560 | True | whippet | 2.671530e-01 | True | German_short-haired_pointer | 8.131910e-02 | True |
| 677 | 683481228088049664 | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | keeshond | 0.508951 | True | chow | 4.420160e-01 | True | German_shepherd | 1.320600e-02 | True |
| 678 | 683498322573824003 | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | Airedale | 0.945362 | True | Irish_terrier | 2.685000e-02 | True | Lakeland_terrier | 1.682640e-02 | True |
| 679 | 683742671509258241 | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | Pembroke | 0.895279 | True | Cardigan | 2.238500e-02 | True | cocker_spaniel | 1.704520e-02 | True |
| 680 | 683773439333797890 | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | miniature_pinscher | 0.072885 | True | Labrador_retriever | 5.786580e-02 | True | schipperke | 5.325660e-02 | True |
| 681 | 683828599284170753 | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | malamute | 0.577376 | True | Siberian_husky | 2.871310e-01 | True | Eskimo_dog | 1.175630e-01 | True |
| 682 | 683834909291606017 | https://pbs.twimg.com/ext_tw_video_thumb/68383... | 1 | Maltese_dog | 0.738449 | True | toy_poodle | 1.029920e-01 | True | Samoyed | 2.324720e-02 | True |
| 683 | 683849932751646720 | https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg | 1 | hog | 0.458855 | False | Mexican_hairless | 1.649060e-01 | True | wild_boar | 1.117000e-01 | False |
| 684 | 683852578183077888 | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | toy_poodle | 0.551352 | True | teddy | 1.806780e-01 | False | miniature_poodle | 1.640950e-01 | True |
| 685 | 683857920510050305 | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | bluetick | 0.174738 | True | Shetland_sheepdog | 1.261010e-01 | True | beagle | 1.228870e-01 | True |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | Labrador_retriever | 0.627856 | True | German_short-haired_pointer | 1.736750e-01 | True | Chesapeake_Bay_retriever | 4.134170e-02 | True |
| 687 | 684122891630342144 | https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg | 1 | cheetah | 0.822193 | False | Arabian_camel | 4.697610e-02 | False | jaguar | 2.578480e-02 | False |
| 688 | 684177701129875456 | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | chow | 0.334783 | True | German_shepherd | 1.626470e-01 | True | golden_retriever | 1.386120e-01 | True |
| 689 | 684188786104872960 | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | kelpie | 0.537782 | True | American_Staffordshire_terrier | 8.295320e-02 | True | Staffordshire_bullterrier | 6.975990e-02 | True |
| 690 | 684195085588783105 | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | Chihuahua | 0.379365 | True | toy_terrier | 1.218090e-01 | True | Boston_bull | 9.598090e-02 | True |
| 691 | 684200372118904832 | https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg | 1 | llama | 0.681347 | False | ram | 1.201420e-01 | False | hog | 4.368580e-02 | False |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | soft-coated_wheaten_terrier | 0.791182 | True | cocker_spaniel | 7.244410e-02 | True | teddy | 7.148650e-02 | False |
| 693 | 684225744407494656 | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | golden_retriever | 0.203249 | True | Samoyed | 6.795810e-02 | True | Great_Pyrenees | 6.532750e-02 | True |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | Pembroke | 0.508498 | True | black-footed_ferret | 1.155320e-01 | False | weasel | 5.128010e-02 | False |
| 695 | 684460069371654144 | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | Labrador_retriever | 0.673691 | True | Chesapeake_Bay_retriever | 1.948970e-01 | True | American_Staffordshire_terrier | 5.947130e-02 | True |
| 696 | 684481074559381504 | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | Chihuahua | 0.937810 | True | Pomeranian | 2.030670e-02 | True | polecat | 1.735700e-02 | False |
| 697 | 684538444857667585 | https://pbs.twimg.com/ext_tw_video_thumb/68453... | 1 | Chihuahua | 0.702583 | True | Siamese_cat | 6.821810e-02 | False | macaque | 4.332460e-02 | False |
| 698 | 684567543613382656 | https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg | 1 | minibus | 0.401942 | False | llama | 2.291450e-01 | False | seat_belt | 2.093930e-01 | False |
| 699 | 684594889858887680 | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | Weimaraner | 0.948688 | True | English_setter | 3.535240e-02 | True | Brittany_spaniel | 3.878780e-03 | True |
| 700 | 684800227459624960 | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | miniature_schnauzer | 0.294457 | True | Norfolk_terrier | 1.618850e-01 | True | West_Highland_white_terrier | 1.209920e-01 | True |
| 701 | 684880619965411328 | https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg | 1 | clog | 0.081101 | False | spindle | 6.695660e-02 | False | agama | 6.088370e-02 | False |
| 702 | 684902183876321280 | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | Pembroke | 0.708034 | True | Cardigan | 2.914470e-01 | True | dingo | 1.845610e-04 | False |
| 703 | 684914660081053696 | https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg | 1 | shopping_cart | 0.460950 | False | chow | 2.612880e-01 | True | Labrador_retriever | 7.419380e-02 | True |
| 704 | 684926975086034944 | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | Labrador_retriever | 0.769412 | True | golden_retriever | 1.448930e-01 | True | lion | 2.143980e-02 | False |
| 705 | 684940049151070208 | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | Border_collie | 0.665578 | True | collie | 1.768460e-01 | True | Old_English_sheepdog | 6.517470e-02 | True |
| 706 | 684959798585110529 | https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg | 1 | llama | 0.379624 | False | triceratops | 1.627610e-01 | False | hog | 8.425150e-02 | False |
| 707 | 685169283572338688 | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | Bernese_mountain_dog | 0.975096 | True | Appenzeller | 1.457810e-02 | True | EntleBucher | 5.943480e-03 | True |
| 708 | 685198997565345792 | https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg | 1 | dishwasher | 0.888829 | False | stove | 1.341150e-02 | False | Old_English_sheepdog | 9.671380e-03 | True |
| 709 | 685268753634967552 | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | pug | 0.999044 | True | Norwegian_elkhound | 5.465860e-04 | True | bull_mastiff | 2.351950e-04 | True |
| 710 | 685307451701334016 | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | Pomeranian | 0.963176 | True | Shetland_sheepdog | 1.946830e-02 | True | keeshond | 8.604930e-03 | True |
| 711 | 685315239903100929 | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | chow | 0.470162 | True | Pomeranian | 1.596770e-01 | True | Eskimo_dog | 1.050740e-01 | True |
| 712 | 685321586178670592 | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | Boston_bull | 0.972483 | True | French_bulldog | 2.546930e-02 | True | boxer | 4.575440e-04 | True |
| 713 | 685325112850124800 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 714 | 685532292383666176 | https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg | 1 | white_wolf | 0.318524 | False | dingo | 2.154360e-01 | False | collie | 9.580520e-02 | True |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 9.712370e-03 | False | hand-held_computer | 8.768570e-03 | False |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | Lakeland_terrier | 0.253839 | True | Airedale | 2.133490e-01 | True | three-toed_sloth | 8.383410e-02 | False |
| 717 | 685663452032069632 | https://pbs.twimg.com/ext_tw_video_thumb/68566... | 1 | Chesapeake_Bay_retriever | 0.171174 | True | tennis_ball | 9.064400e-02 | False | racket | 4.850770e-02 | False |
| 718 | 685667379192414208 | https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg | 1 | sliding_door | 0.344526 | False | doormat | 1.900270e-01 | False | washbasin | 4.632640e-02 | False |
| 719 | 685906723014619143 | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | Yorkshire_terrier | 0.414963 | True | briard | 6.350520e-02 | True | Pekinese | 5.368220e-02 | True |
| 720 | 685943807276412928 | https://pbs.twimg.com/ext_tw_video_thumb/68594... | 1 | papillon | 0.200812 | True | toy_terrier | 1.145120e-01 | True | Cardigan | 9.451960e-02 | True |
| 721 | 685973236358713344 | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | Siberian_husky | 0.450678 | True | Eskimo_dog | 4.302750e-01 | True | malamute | 1.185900e-01 | True |
| 722 | 686003207160610816 | https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg | 1 | damselfly | 0.190786 | False | common_newt | 9.813140e-02 | False | whiptail | 8.895820e-02 | False |
| 723 | 686007916130873345 | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | Rhodesian_ridgeback | 0.885301 | True | redbone | 4.233540e-02 | True | seat_belt | 1.049300e-02 | False |
| 724 | 686034024800862208 | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | Great_Dane | 0.236920 | True | Irish_wolfhound | 1.176080e-01 | True | Greater_Swiss_Mountain_dog | 1.039000e-01 | True |
| 725 | 686050296934563840 | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | Pomeranian | 0.985789 | True | keeshond | 4.082910e-03 | True | Pekinese | 3.333660e-03 | True |
| 726 | 686358356425093120 | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | pug | 0.985237 | True | bull_mastiff | 8.840620e-03 | True | boxer | 2.321430e-03 | True |
| 727 | 686377065986265092 | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | German_shepherd | 0.830816 | True | Leonberg | 7.632520e-02 | True | bloodhound | 3.744860e-02 | True |
| 728 | 686386521809772549 | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | Yorkshire_terrier | 0.477704 | True | silky_terrier | 1.716730e-01 | True | Australian_terrier | 8.833400e-02 | True |
| 729 | 686606069955735556 | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | Labrador_retriever | 0.320012 | True | Ibizan_hound | 2.081720e-01 | True | Saluki | 7.897470e-02 | True |
| 730 | 686618349602762752 | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | Rottweiler | 0.441331 | True | miniature_pinscher | 2.331800e-01 | True | Gordon_setter | 9.358200e-02 | True |
| 731 | 686683045143953408 | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | Norwich_terrier | 0.100499 | True | cocker_spaniel | 8.067110e-02 | True | golden_retriever | 7.940620e-02 | True |
| 732 | 686730991906516992 | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | Tibetan_mastiff | 0.338812 | True | Newfoundland | 1.809250e-01 | True | golden_retriever | 1.800230e-01 | True |
| 733 | 686749460672679938 | https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg | 1 | cheeseburger | 0.643808 | False | hotdog | 2.013780e-01 | False | bagel | 6.387970e-02 | False |
| 734 | 686947101016735744 | https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg | 1 | refrigerator | 0.799795 | False | medicine_chest | 1.825380e-01 | False | ice_bear | 1.430580e-03 | False |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | Labrador_retriever | 0.417107 | True | Chesapeake_Bay_retriever | 3.417300e-01 | True | German_short-haired_pointer | 1.777020e-01 | True |
| 736 | 687102708889812993 | https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg | 1 | fiddler_crab | 0.992069 | False | quail | 2.490600e-03 | False | rock_crab | 1.512570e-03 | False |
| 737 | 687109925361856513 | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | borzoi | 0.883086 | True | whippet | 2.293360e-02 | True | Saluki | 2.160560e-02 | True |
| 738 | 687124485711986689 | https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg | 1 | car_mirror | 0.997121 | False | seat_belt | 3.750870e-04 | False | beagle | 2.162060e-04 | True |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | pug | 0.178205 | True | Chihuahua | 1.491640e-01 | True | Shih-Tzu | 1.205050e-01 | True |
| 740 | 687312378585812992 | https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg | 1 | seat_belt | 0.703561 | False | Great_Dane | 1.399090e-01 | True | Weimaraner | 2.111250e-02 | True |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | Shih-Tzu | 0.747208 | True | Maltese_dog | 9.102540e-02 | True | Lhasa | 3.578780e-02 | True |
| 742 | 687460506001633280 | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | Boston_bull | 0.223366 | True | boxer | 1.835960e-01 | True | French_bulldog | 1.769160e-01 | True |
| 743 | 687476254459715584 | https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg | 1 | wood_rabbit | 0.702725 | False | Angora | 1.906590e-01 | False | hare | 1.050720e-01 | False |
| 744 | 687480748861947905 | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | English_springer | 0.472273 | True | English_setter | 1.668620e-01 | True | Brittany_spaniel | 1.634110e-01 | True |
| 745 | 687494652870668288 | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | Rottweiler | 0.391471 | True | miniature_pinscher | 2.735950e-01 | True | Tibetan_mastiff | 4.169190e-02 | True |
| 746 | 687664829264453632 | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | pug | 0.957365 | True | French_bulldog | 3.855870e-02 | True | toy_poodle | 6.673610e-04 | True |
| 747 | 687704180304273409 | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | miniature_pinscher | 0.956063 | True | toy_terrier | 1.223060e-02 | True | Chihuahua | 5.397480e-03 | True |
| 748 | 687807801670897665 | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | Staffordshire_bullterrier | 0.151113 | True | boxer | 1.356970e-01 | True | American_Staffordshire_terrier | 8.659120e-02 | True |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | Lakeland_terrier | 0.873029 | True | soft-coated_wheaten_terrier | 6.092420e-02 | True | toy_poodle | 1.703090e-02 | True |
| 750 | 687826841265172480 | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | Pomeranian | 0.997210 | True | Pekinese | 8.032410e-04 | True | keeshond | 3.725150e-04 | True |
| 751 | 688064179421470721 | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | Eskimo_dog | 0.240602 | True | Norwegian_elkhound | 1.803690e-01 | True | Siberian_husky | 9.073880e-02 | True |
| 752 | 688116655151435777 | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | pug | 0.973819 | True | Chihuahua | 1.089100e-02 | True | Staffordshire_bullterrier | 6.863890e-03 | True |
| 753 | 688179443353796608 | https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg | 1 | sorrel | 0.811520 | False | horse_cart | 2.482010e-02 | False | Arabian_camel | 1.515530e-02 | False |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/68821... | 1 | bannister | 0.369449 | False | four-poster | 1.053070e-01 | False | shoji | 9.876690e-02 | False |
| 755 | 688385280030670848 | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | golden_retriever | 0.900437 | True | cocker_spaniel | 2.229250e-02 | True | sombrero | 1.499680e-02 | False |
| 756 | 688519176466644993 | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | Pembroke | 0.696372 | True | Cardigan | 1.210520e-01 | True | Shetland_sheepdog | 5.059200e-02 | True |
| 757 | 688547210804498433 | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | papillon | 0.531279 | True | Blenheim_spaniel | 2.141970e-01 | True | Border_collie | 5.383990e-02 | True |
| 758 | 688789766343622656 | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | American_Staffordshire_terrier | 0.599660 | True | Staffordshire_bullterrier | 3.809760e-01 | True | bull_mastiff | 3.889020e-03 | True |
| 759 | 688804835492233216 | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | malinois | 0.199512 | True | German_shepherd | 9.679730e-02 | True | Saluki | 8.284820e-02 | True |
| 760 | 688828561667567616 | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | Cardigan | 0.614231 | True | skunk | 1.393920e-01 | False | toilet_tissue | 3.115820e-02 | False |
| 761 | 688894073864884227 | https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg | 1 | hog | 0.669996 | False | guinea_pig | 7.734700e-02 | False | hamster | 6.239820e-02 | False |
| 762 | 688898160958271489 | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | Ibizan_hound | 0.853170 | True | Chihuahua | 3.989730e-02 | True | Italian_greyhound | 3.521960e-02 | True |
| 763 | 688908934925697024 | https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg | 1 | crane | 0.158859 | False | pier | 1.300160e-01 | False | bell_cote | 8.774140e-02 | False |
| 764 | 688916208532455424 | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | Pembroke | 0.430544 | True | red_fox | 2.065760e-01 | False | Pomeranian | 1.543520e-01 | True |
| 765 | 689143371370250240 | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | English_springer | 0.303781 | True | papillon | 1.651320e-01 | True | Welsh_springer_spaniel | 1.490510e-01 | True |
| 766 | 689154315265683456 | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | cocker_spaniel | 0.816044 | True | golden_retriever | 5.413540e-02 | True | Airedale | 3.064810e-02 | True |
| 767 | 689275259254616065 | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | American_Staffordshire_terrier | 0.215161 | True | Chesapeake_Bay_retriever | 7.905090e-02 | True | Doberman | 7.022590e-02 | True |
| 768 | 689280876073582592 | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | Chihuahua | 0.637546 | True | American_Staffordshire_terrier | 1.506940e-01 | True | Staffordshire_bullterrier | 1.039530e-01 | True |
| 769 | 689283819090870273 | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | Scotch_terrier | 0.267979 | True | affenpinscher | 1.996190e-01 | True | cairn | 1.274690e-01 | True |
| 770 | 689289219123089408 | https://pbs.twimg.com/ext_tw_video_thumb/68928... | 1 | snowmobile | 0.254642 | False | assault_rifle | 1.295580e-01 | False | rifle | 1.108750e-01 | False |
| 771 | 689517482558820352 | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | Pembroke | 0.799319 | True | Cardigan | 1.895370e-01 | True | papillon | 3.386190e-03 | True |
| 772 | 689557536375177216 | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | Eskimo_dog | 0.169482 | True | Siberian_husky | 1.616550e-01 | True | dingo | 1.544140e-01 | False |
| 773 | 689599056876867584 | https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg | 1 | dogsled | 0.426494 | False | cocker_spaniel | 7.310140e-02 | True | Chihuahua | 7.032290e-02 | True |
| 774 | 689623661272240129 | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | toy_poodle | 0.279604 | True | mashed_potato | 2.085640e-01 | False | Labrador_retriever | 7.748090e-02 | True |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | bustard | 0.225221 | False | koala | 5.762530e-02 | False | goose | 5.356890e-02 | False |
| 776 | 689661964914655233 | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | Italian_greyhound | 0.322818 | True | whippet | 2.469660e-01 | True | Chihuahua | 1.225410e-01 | True |
| 777 | 689835978131935233 | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | collie | 0.600186 | True | Shetland_sheepdog | 2.989390e-01 | True | borzoi | 2.261560e-02 | True |
| 778 | 689877686181715968 | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | Old_English_sheepdog | 0.269155 | True | Tibetan_terrier | 1.114960e-01 | True | Lakeland_terrier | 1.049390e-01 | True |
| 779 | 689905486972461056 | https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg | 4 | Pomeranian | 0.943331 | True | Shetland_sheepdog | 2.367510e-02 | True | chow | 7.164950e-03 | True |
| 780 | 689977555533848577 | https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg | 1 | cowboy_hat | 0.291081 | False | Labrador_retriever | 1.796250e-01 | True | sombrero | 1.214930e-01 | False |
| 781 | 689999384604450816 | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | standard_poodle | 0.444499 | True | English_springer | 1.298300e-01 | True | pug | 7.380570e-02 | True |
| 782 | 690005060500217858 | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | Samoyed | 0.270287 | True | Great_Pyrenees | 1.140270e-01 | True | teddy | 7.247480e-02 | False |
| 783 | 690015576308211712 | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | malamute | 0.949609 | True | Siberian_husky | 3.308370e-02 | True | Eskimo_dog | 1.666270e-02 | True |
| 784 | 690021994562220032 | https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg | 1 | badger | 0.289550 | False | weasel | 9.914020e-02 | False | malamute | 4.069580e-02 | True |
| 785 | 690248561355657216 | https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg | 1 | motor_scooter | 0.382690 | False | moped | 3.180170e-01 | False | pickup | 4.062540e-02 | False |
| 786 | 690360449368465409 | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | pug | 0.686933 | True | French_bulldog | 7.635870e-02 | True | Brabancon_griffon | 3.500700e-02 | True |
| 787 | 690374419777196032 | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | kuvasz | 0.286345 | True | Labrador_retriever | 1.071440e-01 | True | ice_bear | 8.508580e-02 | False |
| 788 | 690400367696297985 | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | Pembroke | 0.426459 | True | papillon | 3.173680e-01 | True | Shetland_sheepdog | 7.761600e-02 | True |
| 789 | 690597161306841088 | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | Lhasa | 0.097500 | True | koala | 9.193390e-02 | False | sunglasses | 9.150480e-02 | False |
| 790 | 690649993829576704 | https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg | 1 | bighorn | 0.215438 | False | hyena | 1.379280e-01 | False | Mexican_hairless | 9.817080e-02 | True |
| 791 | 690690673629138944 | https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg | 1 | bath_towel | 0.194532 | False | radiator | 1.277760e-01 | False | Maltese_dog | 8.962460e-02 | True |
| 792 | 690728923253055490 | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | kuvasz | 0.422806 | True | golden_retriever | 2.915860e-01 | True | Great_Pyrenees | 7.618920e-02 | True |
| 793 | 690735892932222976 | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | golden_retriever | 0.883229 | True | Labrador_retriever | 1.096350e-01 | True | kuvasz | 2.795070e-03 | True |
| 794 | 690932576555528194 | https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg | 1 | snorkel | 0.526536 | False | muzzle | 4.808880e-02 | False | scuba_diver | 3.422620e-02 | False |
| 795 | 690938899477221376 | https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg | 1 | geyser | 0.370318 | False | seashore | 2.748880e-01 | False | beacon | 4.639700e-02 | False |
| 796 | 690959652130045952 | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | golden_retriever | 0.862964 | True | Labrador_retriever | 4.486530e-02 | True | Saluki | 1.246780e-02 | True |
| 797 | 691090071332753408 | https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg | 1 | barrow | 0.241637 | False | tub | 2.384500e-01 | False | bathtub | 1.672850e-01 | False |
| 798 | 691096613310316544 | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | borzoi | 0.441269 | True | llama | 2.782700e-01 | False | Arabian_camel | 6.350350e-02 | False |
| 799 | 691321916024623104 | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | Rottweiler | 0.508981 | True | German_shepherd | 2.078970e-01 | True | kelpie | 9.435330e-02 | True |
| 800 | 691416866452082688 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 801 | 691444869282295808 | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | Bernese_mountain_dog | 0.767563 | True | Border_collie | 8.580460e-02 | True | EntleBucher | 4.376930e-02 | True |
| 802 | 691459709405118465 | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | Shetland_sheepdog | 0.551206 | True | collie | 2.325440e-01 | True | Border_collie | 9.521820e-02 | True |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | bloodhound | 0.886232 | True | black-and-tan_coonhound | 7.741960e-02 | True | Gordon_setter | 9.826430e-03 | True |
| 804 | 691675652215414786 | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | Chihuahua | 0.182898 | True | teddy | 1.280770e-01 | False | West_Highland_white_terrier | 9.787480e-02 | True |
| 805 | 691756958957883396 | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | Saint_Bernard | 0.342571 | True | boxer | 2.890960e-01 | True | Pembroke | 7.646340e-02 | True |
| 806 | 691820333922455552 | https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg | 1 | minivan | 0.332756 | False | sports_car | 1.294520e-01 | False | limousine | 7.393590e-02 | False |
| 807 | 692017291282812928 | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | Tibetan_terrier | 0.247565 | True | cocker_spaniel | 1.213770e-01 | True | bow_tie | 9.936250e-02 | False |
| 808 | 692142790915014657 | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | toy_poodle | 0.670068 | True | teddy | 1.908980e-01 | False | miniature_poodle | 3.217790e-02 | True |
| 809 | 692158366030913536 | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | pug | 0.956565 | True | swing | 1.890670e-02 | False | toy_poodle | 1.354440e-02 | True |
| 810 | 692187005137076224 | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | Siberian_husky | 0.810592 | True | malamute | 1.197450e-01 | True | Eskimo_dog | 2.926480e-02 | True |
| 811 | 692417313023332352 | https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg | 1 | bison | 0.208922 | False | mink | 1.699450e-01 | False | polecat | 1.444940e-01 | False |
| 812 | 692530551048294401 | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | Siberian_husky | 0.486428 | True | Eskimo_dog | 4.485180e-01 | True | white_wolf | 4.150610e-02 | False |
| 813 | 692535307825213440 | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | pug | 0.413090 | True | French_bulldog | 1.998650e-01 | True | Chihuahua | 8.199060e-02 | True |
| 814 | 692568918515392513 | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | golden_retriever | 0.636845 | True | Labrador_retriever | 1.633620e-01 | True | Pekinese | 4.555400e-02 | True |
| 815 | 692752401762250755 | https://pbs.twimg.com/tweet_video_thumb/CZ0mhd... | 1 | Samoyed | 0.471276 | True | Siberian_husky | 1.588500e-01 | True | Eskimo_dog | 1.386720e-01 | True |
| 816 | 692828166163931137 | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | Samoyed | 0.985857 | True | Arctic_fox | 7.851640e-03 | False | white_wolf | 3.277700e-03 | False |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | German_short-haired_pointer | 0.876977 | True | bluetick | 3.661510e-02 | True | basset | 1.784770e-02 | True |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | soft-coated_wheaten_terrier | 0.403496 | True | cocker_spaniel | 1.351640e-01 | True | golden_retriever | 8.871870e-02 | True |
| 819 | 692905862751522816 | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | Mexican_hairless | 0.162638 | True | Doberman | 1.562870e-01 | True | Rhodesian_ridgeback | 8.147780e-02 | True |
| 820 | 692919143163629568 | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | Saint_Bernard | 0.612635 | True | English_springer | 2.697440e-01 | True | boxer | 4.866550e-02 | True |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | ice_lolly | 0.660099 | False | neck_brace | 3.956290e-02 | False | Yorkshire_terrier | 3.348780e-02 | True |
| 822 | 693109034023534592 | https://pbs.twimg.com/ext_tw_video_thumb/69310... | 1 | cocker_spaniel | 0.740013 | True | Welsh_springer_spaniel | 8.873900e-02 | True | golden_retriever | 4.746980e-02 | True |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | Shih-Tzu | 0.697480 | True | Lhasa | 2.001510e-01 | True | Tibetan_terrier | 9.097040e-02 | True |
| 824 | 693231807727280129 | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | vizsla | 0.876413 | True | Chesapeake_Bay_retriever | 7.839980e-02 | True | Rhodesian_ridgeback | 3.219410e-02 | True |
| 825 | 693262851218264065 | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | golden_retriever | 0.989333 | True | Labrador_retriever | 7.946440e-03 | True | kuvasz | 7.489320e-04 | True |
| 826 | 693280720173801472 | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | Labrador_retriever | 0.340008 | True | bull_mastiff | 1.753160e-01 | True | box_turtle | 1.643370e-01 | False |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/69348... | 1 | sea_lion | 0.519811 | False | Siamese_cat | 2.909710e-01 | False | black-footed_ferret | 3.996670e-02 | False |
| 828 | 693590843962331137 | https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg | 1 | dining_table | 0.383448 | False | grey_fox | 1.031910e-01 | False | Siamese_cat | 9.825580e-02 | False |
| 829 | 693622659251335168 | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | malamute | 0.449298 | True | Siberian_husky | 3.850750e-01 | True | Eskimo_dog | 1.634850e-01 | True |
| 830 | 693629975228977152 | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | pug | 0.841987 | True | French_bulldog | 6.979110e-02 | True | Boston_bull | 3.871990e-02 | True |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | Scottish_deerhound | 0.111893 | True | bluetick | 7.430180e-02 | True | German_short-haired_pointer | 6.700040e-02 | True |
| 832 | 693647888581312512 | https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg | 1 | washbasin | 0.272451 | False | doormat | 1.658710e-01 | False | bathtub | 6.636840e-02 | False |
| 833 | 693942351086120961 | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | groenendael | 0.550796 | True | Norwegian_elkhound | 1.547700e-01 | True | schipperke | 8.080190e-02 | True |
| 834 | 694001791655137281 | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | Pembroke | 0.769999 | True | Cardigan | 2.292280e-01 | True | Chihuahua | 2.468370e-04 | True |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | teddy | 0.441499 | False | Pekinese | 8.087000e-02 | True | Shih-Tzu | 7.209880e-02 | True |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | Shih-Tzu | 0.352547 | True | toy_poodle | 1.557200e-01 | True | Maltese_dog | 1.166570e-01 | True |
| 837 | 694329668942569472 | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | boxer | 0.990060 | True | bull_mastiff | 7.436270e-03 | True | Saint_Bernard | 1.617290e-03 | True |
| 838 | 694352839993344000 | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | Australian_terrier | 0.407886 | True | Yorkshire_terrier | 3.281730e-01 | True | silky_terrier | 1.084040e-01 | True |
| 839 | 694356675654983680 | https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg | 1 | hamster | 0.429871 | False | Pomeranian | 1.442720e-01 | True | pretzel | 1.272200e-01 | False |
| 840 | 694669722378485760 | https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg | 2 | beaver | 0.457094 | False | mongoose | 2.282980e-01 | False | marmot | 1.483090e-01 | False |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 1.390990e-01 | False | black-footed_ferret | 8.223200e-02 | False |
| 842 | 695051054296211456 | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | Boston_bull | 0.761454 | True | pug | 7.539490e-02 | True | Chihuahua | 4.159780e-02 | True |
| 843 | 695064344191721472 | https://pbs.twimg.com/ext_tw_video_thumb/69506... | 1 | seat_belt | 0.522211 | False | sunglasses | 7.755210e-02 | False | ice_lolly | 5.177400e-02 | False |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | Shih-Tzu | 0.510106 | True | Tibetan_terrier | 7.198090e-02 | True | Lhasa | 6.923100e-02 | True |
| 845 | 695095422348574720 | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | papillon | 0.227784 | True | Chihuahua | 2.181280e-01 | True | Border_collie | 9.345740e-02 | True |
| 846 | 695314793360662529 | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | Maltese_dog | 0.678547 | True | Lhasa | 1.250460e-01 | True | Pekinese | 4.899880e-02 | True |
| 847 | 695409464418041856 | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | pug | 0.997445 | True | bull_mastiff | 1.748550e-03 | True | Pekinese | 3.044040e-04 | True |
| 848 | 695446424020918272 | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | basenji | 0.748904 | True | Cardigan | 1.211020e-01 | True | Pembroke | 1.117670e-01 | True |
| 849 | 695629776980148225 | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | Old_English_sheepdog | 0.693857 | True | otterhound | 2.321170e-01 | True | West_Highland_white_terrier | 1.286670e-02 | True |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | soft-coated_wheaten_terrier | 0.805139 | True | Lakeland_terrier | 1.216620e-01 | True | Afghan_hound | 2.330250e-02 | True |
| 851 | 695794761660297217 | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | Samoyed | 0.962139 | True | Arctic_fox | 3.055280e-02 | False | white_wolf | 1.482340e-03 | False |
| 852 | 695816827381944320 | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | Pomeranian | 0.382234 | True | chow | 2.083020e-01 | True | sunglasses | 1.313280e-01 | False |
| 853 | 696405997980676096 | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | borzoi | 0.132845 | True | Walker_hound | 8.600480e-02 | True | Great_Pyrenees | 6.558230e-02 | True |
| 854 | 696488710901260288 | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | briard | 0.369063 | True | Scotch_terrier | 1.682040e-01 | True | giant_schnauzer | 1.205530e-01 | True |
| 855 | 696713835009417216 | https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg | 1 | car_mirror | 0.379797 | False | Chesapeake_Bay_retriever | 3.215890e-01 | True | vizsla | 1.169310e-01 | True |
| 856 | 696754882863349760 | https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg | 1 | weasel | 0.137832 | False | toy_poodle | 9.837810e-02 | True | Scottish_deerhound | 9.739670e-02 | True |
| 857 | 696877980375769088 | https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg | 1 | space_heater | 0.206876 | False | spatula | 1.234500e-01 | False | vacuum | 1.192180e-01 | False |
| 858 | 696886256886657024 | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | kuvasz | 0.383941 | True | golden_retriever | 2.890850e-01 | True | dingo | 5.654810e-02 | False |
| 859 | 696894894812565505 | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | Appenzeller | 0.665628 | True | beagle | 1.047950e-01 | True | Greater_Swiss_Mountain_dog | 6.786800e-02 | True |
| 860 | 696900204696625153 | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | Chihuahua | 0.297735 | True | Pembroke | 2.669530e-01 | True | basenji | 1.368140e-01 | True |
| 861 | 697242256848379904 | https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg | 1 | grey_fox | 0.236031 | False | Siamese_cat | 1.657910e-01 | False | Eskimo_dog | 6.353280e-02 | True |
| 862 | 697255105972801536 | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | Great_Dane | 0.173989 | True | malinois | 1.658880e-01 | True | Doberman | 1.198900e-01 | True |
| 863 | 697259378236399616 | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | Great_Dane | 0.999223 | True | boxer | 1.865250e-04 | True | whippet | 1.510710e-04 | True |
| 864 | 697270446429966336 | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | toy_poodle | 0.880014 | True | miniature_poodle | 1.001360e-01 | True | Norfolk_terrier | 7.027060e-03 | True |
| 865 | 697463031882764288 | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | Labrador_retriever | 0.999885 | True | golden_retriever | 9.758170e-05 | True | pug | 8.267760e-06 | True |
| 866 | 697482927769255936 | https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg | 1 | bath_towel | 0.110587 | False | Christmas_stocking | 1.085730e-01 | False | weasel | 1.054420e-01 | False |
| 867 | 697575480820686848 | https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg | 1 | Siamese_cat | 0.256698 | False | whippet | 1.198050e-01 | True | bull_mastiff | 1.025950e-01 | True |
| 868 | 697596423848730625 | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | Shetland_sheepdog | 0.621668 | True | collie | 3.665780e-01 | True | Pembroke | 7.698190e-03 | True |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | Lhasa | 0.521931 | True | Shih-Tzu | 4.034510e-01 | True | Tibetan_terrier | 3.991220e-02 | True |
| 870 | 697881462549430272 | https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg | 1 | washbasin | 0.176423 | False | paper_towel | 1.674620e-01 | False | toilet_tissue | 9.802910e-02 | False |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | Great_Dane | 0.126924 | True | Greater_Swiss_Mountain_dog | 1.100370e-01 | True | German_short-haired_pointer | 9.081600e-02 | True |
| 872 | 697990423684476929 | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | Pembroke | 0.984783 | True | Cardigan | 1.501800e-02 | True | Shetland_sheepdog | 7.358600e-05 | True |
| 873 | 697995514407682048 | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | Staffordshire_bullterrier | 0.280222 | True | Boston_bull | 1.614780e-01 | True | American_Staffordshire_terrier | 1.268840e-01 | True |
| 874 | 698178924120031232 | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | Chesapeake_Bay_retriever | 0.351868 | True | malinois | 2.077530e-01 | True | Labrador_retriever | 1.546060e-01 | True |
| 875 | 698195409219559425 | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | Labrador_retriever | 0.643690 | True | American_Staffordshire_terrier | 1.026840e-01 | True | dalmatian | 5.000780e-02 | True |
| 876 | 698262614669991936 | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | Italian_greyhound | 0.107948 | True | basset | 7.523000e-02 | True | Staffordshire_bullterrier | 6.943610e-02 | True |
| 877 | 698342080612007937 | https://pbs.twimg.com/ext_tw_video_thumb/69834... | 1 | boxer | 0.883048 | True | Saint_Bernard | 3.057940e-02 | True | Staffordshire_bullterrier | 1.299410e-02 | True |
| 878 | 698355670425473025 | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | pug | 0.990191 | True | Pekinese | 2.798540e-03 | True | sunglasses | 1.309520e-03 | False |
| 879 | 698549713696649216 | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | French_bulldog | 0.998544 | True | Boston_bull | 1.403940e-03 | True | boxer | 2.322000e-05 | True |
| 880 | 698635131305795584 | https://pbs.twimg.com/ext_tw_video_thumb/69863... | 1 | Samoyed | 0.158464 | True | kuvasz | 8.940250e-02 | True | West_Highland_white_terrier | 2.503730e-02 | True |
| 881 | 698703483621523456 | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | Brittany_spaniel | 0.931963 | True | Welsh_springer_spaniel | 3.069490e-02 | True | beagle | 1.289610e-02 | True |
| 882 | 698710712454139905 | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | Samoyed | 0.329895 | True | shoji | 1.657720e-01 | False | prison | 1.035960e-01 | False |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | German_short-haired_pointer | 0.983131 | True | bluetick | 5.557720e-03 | True | curly-coated_retriever | 3.322210e-03 | True |
| 884 | 698953797952008193 | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | Italian_greyhound | 0.382378 | True | redbone | 1.022550e-01 | True | shower_cap | 7.683370e-02 | False |
| 885 | 698989035503689728 | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | Norfolk_terrier | 0.246340 | True | Irish_terrier | 2.433490e-01 | True | golden_retriever | 8.587100e-02 | True |
| 886 | 699036661657767936 | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | Chihuahua | 0.222943 | True | toyshop | 1.799380e-01 | False | Weimaraner | 1.630330e-01 | True |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/69907... | 1 | Shih-Tzu | 0.599587 | True | Pekinese | 2.130690e-01 | True | Maltese_dog | 1.542930e-01 | True |
| 888 | 699079609774645248 | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | schipperke | 0.667324 | True | Chesapeake_Bay_retriever | 1.195500e-01 | True | kelpie | 9.759950e-02 | True |
| 889 | 699088579889332224 | https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg | 1 | mousetrap | 0.456186 | False | banded_gecko | 2.586770e-01 | False | common_iguana | 6.178260e-02 | False |
| 890 | 699323444782047232 | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | Labrador_retriever | 0.309696 | True | doormat | 3.037000e-01 | False | sliding_door | 7.726600e-02 | False |
| 891 | 699370870310113280 | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | cairn | 0.337557 | True | Chihuahua | 2.091300e-01 | True | Border_terrier | 1.369460e-01 | True |
| 892 | 699413908797464576 | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | Samoyed | 0.517479 | True | malamute | 1.559350e-01 | True | Eskimo_dog | 9.500090e-02 | True |
| 893 | 699423671849451520 | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | pug | 0.997860 | True | French_bulldog | 1.824860e-03 | True | bull_mastiff | 2.989400e-04 | True |
| 894 | 699434518667751424 | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | golden_retriever | 0.836572 | True | kuvasz | 1.059460e-01 | True | Labrador_retriever | 2.514390e-02 | True |
| 895 | 699446877801091073 | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | Pembroke | 0.969400 | True | Cardigan | 2.605880e-02 | True | Chihuahua | 3.505470e-03 | True |
| 896 | 699691744225525762 | https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg | 1 | hippopotamus | 0.982269 | False | sea_lion | 6.295150e-03 | False | dugong | 5.767950e-03 | False |
| 897 | 699775878809702401 | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | Dandie_Dinmont | 0.271683 | True | Old_English_sheepdog | 1.649310e-01 | True | otterhound | 1.059180e-01 | True |
| 898 | 699779630832685056 | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | malinois | 0.706038 | True | German_shepherd | 1.656550e-01 | True | Great_Dane | 5.904750e-02 | True |
| 899 | 699788877217865730 | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | Border_terrier | 0.355060 | True | toy_poodle | 1.697360e-01 | True | Norwegian_elkhound | 9.988370e-02 | True |
| 900 | 699801817392291840 | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | golden_retriever | 0.808978 | True | Irish_setter | 4.242810e-02 | True | Labrador_retriever | 2.353640e-02 | True |
| 901 | 700002074055016451 | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | Chihuahua | 0.369488 | True | schipperke | 2.433670e-01 | True | pug | 1.616140e-01 | True |
| 902 | 700029284593901568 | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | West_Highland_white_terrier | 0.726571 | True | Maltese_dog | 1.768280e-01 | True | Dandie_Dinmont | 7.013380e-02 | True |
| 903 | 700062718104104960 | https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg | 1 | hummingbird | 0.180998 | False | peacock | 1.351790e-01 | False | eel | 7.537100e-02 | False |
| 904 | 700143752053182464 | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | golden_retriever | 0.532460 | True | crossword_puzzle | 1.037960e-01 | False | binder | 1.003710e-01 | False |
| 905 | 700151421916807169 | https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg | 1 | tennis_ball | 0.328236 | False | Italian_greyhound | 1.768380e-01 | True | Staffordshire_bullterrier | 1.340800e-01 | True |
| 906 | 700167517596164096 | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | beagle | 0.162585 | True | Pembroke | 1.204810e-01 | True | Siberian_husky | 1.102840e-01 | True |
| 907 | 700462010979500032 | https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg | 1 | hamster | 0.678651 | False | Pomeranian | 1.102680e-01 | True | Angora | 1.041390e-01 | False |
| 908 | 700505138482569216 | https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg | 1 | bath_towel | 0.449684 | False | Norwegian_elkhound | 1.602050e-01 | True | Great_Dane | 4.866580e-02 | True |
| 909 | 700518061187723268 | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | American_Staffordshire_terrier | 0.569501 | True | Staffordshire_bullterrier | 2.113080e-01 | True | Chihuahua | 1.218390e-01 | True |
| 910 | 700747788515020802 | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | Great_Pyrenees | 0.481333 | True | Samoyed | 3.117690e-01 | True | Maltese_dog | 7.496210e-02 | True |
| 911 | 700796979434098688 | https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg | 1 | tailed_frog | 0.652712 | False | tree_frog | 2.802120e-01 | False | bullfrog | 4.017750e-02 | False |
| 912 | 700847567345688576 | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | Rhodesian_ridgeback | 0.252514 | True | redbone | 1.530050e-01 | True | whippet | 1.351990e-01 | True |
| 913 | 700864154249383937 | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | kuvasz | 0.805857 | True | Great_Pyrenees | 1.872720e-01 | True | Samoyed | 3.490900e-03 | True |
| 914 | 700890391244103680 | https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg | 1 | white_wolf | 0.166563 | False | schipperke | 1.223560e-01 | True | West_Highland_white_terrier | 1.192470e-01 | True |
| 915 | 701214700881756160 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 916 | 701545186879471618 | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | Border_collie | 0.280893 | True | Cardigan | 1.125500e-01 | True | toy_terrier | 5.331720e-02 | True |
| 917 | 701570477911896070 | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | Yorkshire_terrier | 0.907990 | True | silky_terrier | 7.688290e-02 | True | Australian_terrier | 8.472760e-03 | True |
| 918 | 701601587219795968 | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | Chihuahua | 0.993661 | True | Pembroke | 1.504870e-03 | True | toy_terrier | 8.666070e-04 | True |
| 919 | 701889187134500865 | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | French_bulldog | 0.902856 | True | Staffordshire_bullterrier | 2.263410e-02 | True | soap_dispenser | 1.197320e-02 | False |
| 920 | 701952816642965504 | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | toy_poodle | 0.331707 | True | miniature_poodle | 2.724850e-01 | True | standard_poodle | 1.694150e-01 | True |
| 921 | 701981390485725185 | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | Pomeranian | 0.491022 | True | weasel | 1.308790e-01 | False | Yorkshire_terrier | 9.924100e-02 | True |
| 922 | 702217446468493312 | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | golden_retriever | 0.242419 | True | chow | 2.268000e-01 | True | cocker_spaniel | 1.940860e-01 | True |
| 923 | 702276748847800320 | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | Boston_bull | 0.697303 | True | French_bulldog | 2.390150e-01 | True | American_Staffordshire_terrier | 1.983810e-02 | True |
| 924 | 702321140488925184 | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | West_Highland_white_terrier | 0.769159 | True | Scotch_terrier | 6.436880e-02 | True | Old_English_sheepdog | 4.376340e-02 | True |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | Pomeranian | 0.714367 | True | Shih-Tzu | 4.057410e-02 | True | silky_terrier | 3.251050e-02 | True |
| 926 | 702598099714314240 | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | kelpie | 0.219179 | True | badger | 1.335840e-01 | False | Siamese_cat | 7.444000e-02 | False |
| 927 | 702671118226825216 | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | bloodhound | 0.381227 | True | Sussex_spaniel | 2.120170e-01 | True | clumber | 1.286220e-01 | True |
| 928 | 702684942141153280 | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | golden_retriever | 0.514085 | True | Chesapeake_Bay_retriever | 1.732240e-01 | True | Brittany_spaniel | 1.183840e-01 | True |
| 929 | 702932127499816960 | https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg | 1 | wallaby | 0.410710 | False | wombat | 2.393320e-01 | False | beaver | 1.496050e-01 | False |
| 930 | 703041949650034688 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 931 | 703079050210877440 | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | Pembroke | 0.778503 | True | Shetland_sheepdog | 9.383390e-02 | True | Cardigan | 6.029640e-02 | True |
| 932 | 703268521220972544 | https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg | 1 | wool | 0.525434 | False | fur_coat | 2.363910e-01 | False | kuvasz | 3.824300e-02 | True |
| 933 | 703356393781329922 | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | Border_collie | 0.894842 | True | collie | 9.736370e-02 | True | English_springer | 3.036740e-03 | True |
| 934 | 703382836347330562 | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | golden_retriever | 0.945664 | True | standard_poodle | 1.439200e-02 | True | Tibetan_mastiff | 1.202170e-02 | True |
| 935 | 703407252292673536 | https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg | 1 | doormat | 0.201058 | False | turnstile | 8.858320e-02 | False | carton | 8.292380e-02 | False |
| 936 | 703425003149250560 | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | miniature_pinscher | 0.292866 | True | sleeping_bag | 1.421220e-01 | False | Italian_greyhound | 7.084900e-02 | True |
| 937 | 703611486317502464 | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | Pembroke | 0.756441 | True | basenji | 1.266210e-01 | True | Cardigan | 8.011670e-02 | True |
| 938 | 703631701117943808 | https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg | 2 | window_shade | 0.909533 | False | window_screen | 1.142660e-02 | False | brass | 8.882100e-03 | False |
| 939 | 703769065844768768 | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | boxer | 0.838994 | True | Greater_Swiss_Mountain_dog | 8.880030e-02 | True | bull_mastiff | 3.168390e-02 | True |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | Labrador_retriever | 0.990119 | True | Chesapeake_Bay_retriever | 8.025580e-03 | True | curly-coated_retriever | 1.242290e-03 | True |
| 941 | 704054845121142784 | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | Great_Pyrenees | 0.667939 | True | kuvasz | 2.287640e-01 | True | golden_retriever | 4.388540e-02 | True |
| 942 | 704113298707505153 | https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg | 2 | otter | 0.945537 | False | mink | 1.823110e-02 | False | sea_lion | 1.586080e-02 | False |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | teddy | 0.233378 | False | feather_boa | 8.847440e-02 | False | Brittany_spaniel | 8.291730e-02 | True |
| 944 | 704364645503647744 | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | Pembroke | 0.980695 | True | Cardigan | 1.850440e-02 | True | Chihuahua | 2.152930e-04 | True |
| 945 | 704480331685040129 | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | Samoyed | 0.979206 | True | Pomeranian | 7.185400e-03 | True | Arctic_fox | 6.438090e-03 | False |
| 946 | 704499785726889984 | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | Chihuahua | 0.376541 | True | Siamese_cat | 9.805710e-02 | False | Labrador_retriever | 8.521090e-02 | True |
| 947 | 704761120771465216 | https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg | 1 | Siamese_cat | 0.202294 | False | Chihuahua | 1.004180e-01 | True | basenji | 7.209650e-02 | True |
| 948 | 704819833553219584 | https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg | 1 | guinea_pig | 0.994776 | False | hamster | 4.068790e-03 | False | wood_rabbit | 2.058690e-04 | False |
| 949 | 704847917308362754 | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | golden_retriever | 0.857240 | True | Labrador_retriever | 1.354600e-01 | True | Tibetan_mastiff | 1.903320e-03 | True |
| 950 | 704859558691414016 | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | pug | 0.284428 | True | teddy | 1.563390e-01 | False | mitten | 1.389150e-01 | False |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | Norfolk_terrier | 0.689504 | True | soft-coated_wheaten_terrier | 1.014800e-01 | True | Norwich_terrier | 5.577850e-02 | True |
| 952 | 705066031337840642 | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | Airedale | 0.868658 | True | Irish_terrier | 2.758710e-02 | True | otterhound | 2.532360e-02 | True |
| 953 | 705102439679201280 | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | collie | 0.457672 | True | chow | 2.791010e-01 | True | Pomeranian | 7.692230e-02 | True |
| 954 | 705223444686888960 | https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg | 1 | Egyptian_cat | 0.090508 | False | Chesapeake_Bay_retriever | 7.737330e-02 | True | Mexican_hairless | 4.947150e-02 | True |
| 955 | 705239209544720384 | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | Chihuahua | 0.157950 | True | toy_terrier | 8.992030e-02 | True | Mexican_hairless | 6.322450e-02 | True |
| 956 | 705428427625635840 | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | Chihuahua | 0.774792 | True | quilt | 7.307940e-02 | False | Pembroke | 2.236510e-02 | True |
| 957 | 705442520700944385 | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | Great_Pyrenees | 0.309106 | True | kuvasz | 2.245560e-01 | True | seat_belt | 2.021000e-01 | False |
| 958 | 705475953783398401 | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | golden_retriever | 0.908784 | True | Labrador_retriever | 3.036120e-02 | True | tennis_ball | 4.995620e-03 | False |
| 959 | 705591895322394625 | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | basenji | 0.877207 | True | Italian_greyhound | 4.785420e-02 | True | miniature_pinscher | 3.563810e-02 | True |
| 960 | 705786532653883392 | https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg | 1 | web_site | 0.550294 | False | Labrador_retriever | 1.484960e-01 | True | golden_retriever | 1.484820e-01 | True |
| 961 | 705898680587526145 | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | collie | 0.808276 | True | Border_collie | 5.943700e-02 | True | groenendael | 2.672030e-02 | True |
| 962 | 705970349788291072 | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | golden_retriever | 0.776346 | True | Labrador_retriever | 1.124130e-01 | True | chow | 3.695290e-02 | True |
| 963 | 705975130514706432 | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | Staffordshire_bullterrier | 0.587764 | True | American_Staffordshire_terrier | 2.814290e-01 | True | bull_mastiff | 9.479810e-02 | True |
| 964 | 706166467411222528 | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | Samoyed | 0.430418 | True | kuvasz | 2.796000e-01 | True | Great_Pyrenees | 1.174800e-01 | True |
| 965 | 706265994973601792 | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | papillon | 0.743715 | True | Pekinese | 1.140420e-01 | True | Saint_Bernard | 4.771520e-02 | True |
| 966 | 706291001778950144 | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | Border_terrier | 0.587101 | True | bull_mastiff | 1.640870e-01 | True | Staffordshire_bullterrier | 1.050110e-01 | True |
| 967 | 706310011488698368 | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | Pembroke | 0.698165 | True | Chihuahua | 1.058340e-01 | True | bloodhound | 6.203040e-02 | True |
| 968 | 706346369204748288 | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | Tibetan_mastiff | 0.956462 | True | Rottweiler | 2.538090e-02 | True | Appenzeller | 8.679210e-03 | True |
| 969 | 706516534877929472 | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | golden_retriever | 0.772685 | True | Labrador_retriever | 7.166530e-02 | True | golfcart | 2.099310e-02 | False |
| 970 | 706538006853918722 | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | chow | 0.541794 | True | Pembroke | 9.491840e-02 | True | Pomeranian | 8.543940e-02 | True |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 1.893120e-01 | False | pillow | 2.940880e-02 | False |
| 972 | 706644897839910912 | https://pbs.twimg.com/ext_tw_video_thumb/70664... | 1 | space_heater | 0.137871 | False | Chihuahua | 1.329280e-01 | True | cougar | 1.138660e-01 | False |
| 973 | 706681918348251136 | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | toy_poodle | 0.717584 | True | miniature_poodle | 1.514330e-01 | True | Norwich_terrier | 4.708700e-02 | True |
| 974 | 706901761596989440 | https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg | 1 | wild_boar | 0.859499 | False | hog | 1.289810e-01 | False | warthog | 1.131780e-02 | False |
| 975 | 707014260413456384 | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | Chihuahua | 0.583780 | True | Italian_greyhound | 1.296830e-01 | True | toy_terrier | 8.915270e-02 | True |
| 976 | 707021089608753152 | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | cocker_spaniel | 0.559658 | True | golden_retriever | 3.146730e-01 | True | Pekinese | 6.667170e-02 | True |
| 977 | 707038192327901184 | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | pug | 0.642426 | True | llama | 5.730620e-02 | False | French_bulldog | 5.418650e-02 | True |
| 978 | 707059547140169728 | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | Samoyed | 0.897312 | True | Great_Pyrenees | 3.918020e-02 | True | kuvasz | 1.951600e-02 | True |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | Blenheim_spaniel | 0.370717 | True | Shih-Tzu | 2.015660e-01 | True | black-footed_ferret | 1.015590e-01 | False |
| 980 | 707315916783140866 | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | Bernese_mountain_dog | 0.979235 | True | Shetland_sheepdog | 1.103680e-02 | True | Appenzeller | 3.971110e-03 | True |
| 981 | 707377100785885184 | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | golden_retriever | 0.637225 | True | bloodhound | 9.454210e-02 | True | cocker_spaniel | 6.979710e-02 | True |
| 982 | 707387676719185920 | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | Chihuahua | 0.888468 | True | Italian_greyhound | 8.863460e-02 | True | toy_terrier | 1.593830e-02 | True |
| 983 | 707411934438625280 | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | Lakeland_terrier | 0.738277 | True | Airedale | 2.851490e-02 | True | giant_schnauzer | 2.487630e-02 | True |
| 984 | 707420581654872064 | https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg | 1 | ram | 0.518215 | False | kuvasz | 1.493910e-01 | True | Great_Pyrenees | 1.060030e-01 | True |
| 985 | 707610948723478529 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 986 | 707693576495472641 | https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg | 1 | bathtub | 0.499525 | False | tub | 4.880140e-01 | False | washbasin | 9.298250e-03 | False |
| 987 | 707741517457260545 | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | whippet | 0.738371 | True | Italian_greyhound | 1.917890e-01 | True | American_Staffordshire_terrier | 2.012570e-02 | True |
| 988 | 707776935007539200 | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | miniature_pinscher | 0.890426 | True | toy_terrier | 5.133470e-02 | True | Chihuahua | 1.801530e-02 | True |
| 989 | 707969809498152960 | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | toy_poodle | 0.908491 | True | miniature_poodle | 8.265160e-02 | True | teddy | 5.786130e-03 | False |
| 990 | 707995814724026368 | https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg | 1 | agama | 0.172087 | False | Gila_monster | 1.269780e-01 | False | lumbermill | 5.040000e-02 | False |
| 991 | 708026248782585858 | https://pbs.twimg.com/ext_tw_video_thumb/70802... | 1 | malinois | 0.786468 | True | Chesapeake_Bay_retriever | 6.897890e-02 | True | Siamese_cat | 2.930440e-02 | False |
| 992 | 708109389455101952 | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | Staffordshire_bullterrier | 0.516106 | True | American_Staffordshire_terrier | 2.360750e-01 | True | kelpie | 6.974950e-02 | True |
| 993 | 708119489313951744 | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | Norwich_terrier | 0.264483 | True | Norfolk_terrier | 2.587860e-01 | True | chow | 9.689870e-02 | True |
| 994 | 708130923141795840 | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | French_bulldog | 0.710354 | True | Chihuahua | 2.623020e-01 | True | Cardigan | 6.903820e-03 | True |
| 995 | 708149363256774660 | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | Cardigan | 0.350993 | True | basset | 1.645550e-01 | True | toy_terrier | 8.048360e-02 | True |
| 996 | 708349470027751425 | https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg | 1 | muzzle | 0.243890 | False | basenji | 1.871580e-01 | True | Boston_bull | 9.272700e-02 | True |
| 997 | 708356463048204288 | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | pug | 0.871283 | True | French_bulldog | 4.182000e-02 | True | bath_towel | 1.522800e-02 | False |
| 998 | 708469915515297792 | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | Chihuahua | 0.748163 | True | toy_terrier | 1.277170e-01 | True | Pembroke | 4.214100e-02 | True |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | Shih-Tzu | 0.218479 | True | Lhasa | 2.019660e-01 | True | Norfolk_terrier | 1.652250e-01 | True |
| 1000 | 708711088997666817 | https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg | 2 | tennis_ball | 0.912961 | False | German_short-haired_pointer | 5.269460e-02 | True | Labrador_retriever | 1.847740e-02 | True |
| 1001 | 708738143638450176 | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | Pomeranian | 0.933457 | True | Samoyed | 5.722080e-02 | True | West_Highland_white_terrier | 9.041510e-04 | True |
| 1002 | 708810915978854401 | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | golden_retriever | 0.976139 | True | Labrador_retriever | 1.630090e-02 | True | Norfolk_terrier | 1.871370e-03 | True |
| 1003 | 708834316713893888 | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | Eskimo_dog | 0.283945 | True | giant_panda | 2.182520e-01 | False | malamute | 1.804010e-01 | True |
| 1004 | 708845821941387268 | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | schipperke | 0.745640 | True | kelpie | 1.678530e-01 | True | Boston_bull | 1.476290e-02 | True |
| 1005 | 709042156699303936 | https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg | 1 | hotdog | 0.826579 | False | Rottweiler | 6.817930e-02 | True | Labrador_retriever | 4.921790e-02 | True |
| 1006 | 709158332880297985 | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | Siberian_husky | 0.212957 | True | Eskimo_dog | 1.788870e-01 | True | Labrador_retriever | 1.742180e-01 | True |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | borzoi | 0.490783 | True | wire-haired_fox_terrier | 8.351330e-02 | True | English_setter | 8.318430e-02 | True |
| 1008 | 709207347839836162 | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | Chihuahua | 0.948323 | True | Italian_greyhound | 1.773030e-02 | True | quilt | 1.668790e-02 | False |
| 1009 | 709225125749587968 | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | Labrador_retriever | 0.271109 | True | Pomeranian | 1.504870e-01 | True | golden_retriever | 1.455780e-01 | True |
| 1010 | 709409458133323776 | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | Shetland_sheepdog | 0.797450 | True | collie | 5.405530e-02 | True | keeshond | 3.167330e-02 | True |
| 1011 | 709449600415961088 | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | Maltese_dog | 0.780187 | True | Dandie_Dinmont | 7.442870e-02 | True | Norfolk_terrier | 3.377620e-02 | True |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | cocker_spaniel | 0.414982 | True | Newfoundland | 2.254820e-01 | True | flat-coated_retriever | 1.967890e-01 | True |
| 1013 | 709556954897764353 | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | golden_retriever | 0.790026 | True | kuvasz | 1.050310e-01 | True | Labrador_retriever | 8.705120e-02 | True |
| 1014 | 709566166965075968 | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | chow | 0.999837 | True | Tibetan_mastiff | 1.169070e-04 | True | Australian_terrier | 1.133840e-05 | True |
| 1015 | 709852847387627521 | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | Chihuahua | 0.945629 | True | Pomeranian | 1.920360e-02 | True | West_Highland_white_terrier | 1.013420e-02 | True |
| 1016 | 709901256215666688 | https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg | 2 | bib | 0.998814 | False | handkerchief | 5.117730e-04 | False | umbrella | 2.244770e-04 | False |
| 1017 | 709918798883774466 | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | Pembroke | 0.956222 | True | Cardigan | 2.072730e-02 | True | Chihuahua | 7.912180e-03 | True |
| 1018 | 710117014656950272 | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | toy_poodle | 0.802092 | True | miniature_poodle | 1.116470e-01 | True | cocker_spaniel | 6.286620e-02 | True |
| 1019 | 710140971284037632 | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | Pekinese | 0.953170 | True | papillon | 1.951690e-02 | True | Japanese_spaniel | 5.820510e-03 | True |
| 1020 | 710153181850935296 | https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg | 2 | cowboy_hat | 0.979053 | False | sombrero | 1.068250e-02 | False | cocker_spaniel | 2.712960e-03 | True |
| 1021 | 710269109699739648 | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | pug | 0.415495 | True | German_shepherd | 1.781570e-01 | True | Labrador_retriever | 1.002020e-01 | True |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | Old_English_sheepdog | 0.586307 | True | wire-haired_fox_terrier | 1.186220e-01 | True | Lakeland_terrier | 1.068060e-01 | True |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | Shih-Tzu | 0.932401 | True | Lhasa | 3.080570e-02 | True | Tibetan_terrier | 8.974280e-03 | True |
| 1024 | 710588934686908417 | https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg | 4 | Pembroke | 0.982004 | True | Cardigan | 8.943470e-03 | True | malamute | 7.549900e-03 | True |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | soft-coated_wheaten_terrier | 0.948617 | True | Dandie_Dinmont | 1.866440e-02 | True | cairn | 1.594270e-02 | True |
| 1026 | 710833117892898816 | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | Pembroke | 0.803742 | True | Cardigan | 1.897120e-01 | True | German_shepherd | 1.746090e-03 | True |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | dingo | 0.536593 | False | Pembroke | 2.004070e-01 | True | basenji | 6.073450e-02 | True |
| 1028 | 710997087345876993 | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | malamute | 0.281260 | True | Eskimo_dog | 2.326410e-01 | True | Pembroke | 9.160200e-02 | True |
| 1029 | 711008018775851008 | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | French_bulldog | 0.731405 | True | Boston_bull | 1.506720e-01 | True | pug | 2.181090e-02 | True |
| 1030 | 711306686208872448 | https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg | 1 | leatherback_turtle | 0.280835 | False | loggerhead | 1.232900e-01 | False | Dandie_Dinmont | 8.679250e-02 | True |
| 1031 | 711363825979756544 | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | Pembroke | 0.750906 | True | Cardigan | 2.411520e-01 | True | basenji | 2.639620e-03 | True |
| 1032 | 711652651650457602 | https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg | 1 | llama | 0.856789 | False | Arabian_camel | 9.872700e-02 | False | neck_brace | 1.637720e-02 | False |
| 1033 | 711694788429553666 | https://pbs.twimg.com/tweet_video_thumb/CeBym7... | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | dingo | 0.366875 | False | Ibizan_hound | 3.349290e-01 | True | Eskimo_dog | 7.387620e-02 | True |
| 1035 | 711743778164514816 | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | Lakeland_terrier | 0.459515 | True | miniature_poodle | 2.196610e-01 | True | standard_poodle | 1.301890e-01 | True |
| 1036 | 711968124745228288 | https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg | 1 | espresso | 0.430135 | False | coffee_mug | 4.184830e-01 | False | cup | 8.839120e-02 | False |
| 1037 | 711998809858043904 | https://pbs.twimg.com/tweet_video_thumb/CeGGkW... | 1 | comic_book | 0.105171 | False | kuvasz | 5.989510e-02 | True | book_jacket | 4.663810e-02 | False |
| 1038 | 712065007010385924 | https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg | 1 | goose | 0.214301 | False | gibbon | 8.425300e-02 | False | pizza | 8.016830e-02 | False |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | Shih-Tzu | 0.625129 | True | Tibetan_terrier | 1.268970e-01 | True | Lhasa | 1.196630e-01 | True |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 1.531260e-01 | False | three-toed_sloth | 1.118400e-01 | False |
| 1041 | 712097430750289920 | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | Labrador_retriever | 0.720481 | True | whippet | 4.803180e-02 | True | Chesapeake_Bay_retriever | 4.504640e-02 | True |
| 1042 | 712438159032893441 | https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg | 1 | ice_bear | 0.869477 | False | Great_Pyrenees | 6.945700e-02 | True | Labrador_retriever | 2.474000e-02 | True |
| 1043 | 712668654853337088 | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | Labrador_retriever | 0.829058 | True | golden_retriever | 3.866450e-02 | True | Chihuahua | 2.622140e-02 | True |
| 1044 | 712717840512598017 | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | Great_Pyrenees | 0.732043 | True | kuvasz | 1.213750e-01 | True | Irish_wolfhound | 4.952370e-02 | True |
| 1045 | 712809025985978368 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1046 | 713175907180089344 | https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg | 1 | timber_wolf | 0.503788 | False | malamute | 4.306240e-01 | True | Siberian_husky | 2.845420e-02 | True |
| 1047 | 713177543487135744 | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | whippet | 0.734244 | True | basenji | 2.594800e-02 | True | Great_Dane | 2.587430e-02 | True |
| 1048 | 713411074226274305 | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | Great_Pyrenees | 0.720337 | True | Samoyed | 1.295420e-01 | True | kuvasz | 1.224510e-01 | True |
| 1049 | 713761197720473600 | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | Brittany_spaniel | 0.797936 | True | English_springer | 4.471820e-02 | True | Welsh_springer_spaniel | 3.791070e-02 | True |
| 1050 | 713900603437621249 | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | golden_retriever | 0.371816 | True | cocker_spaniel | 1.774130e-01 | True | Irish_setter | 9.272520e-02 | True |
| 1051 | 713919462244790272 | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | Siberian_husky | 0.463223 | True | Eskimo_dog | 3.899590e-01 | True | malamute | 9.796270e-02 | True |
| 1052 | 714141408463036416 | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | Labrador_retriever | 0.586951 | True | golden_retriever | 3.788120e-01 | True | redbone | 3.604890e-03 | True |
| 1053 | 714214115368108032 | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | pug | 0.533967 | True | bloodhound | 1.648260e-01 | True | German_shepherd | 4.652400e-02 | True |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | soft-coated_wheaten_terrier | 0.751962 | True | Bedlington_terrier | 1.756520e-01 | True | Great_Pyrenees | 1.145240e-02 | True |
| 1055 | 714258258790387713 | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | collie | 0.176758 | True | Chesapeake_Bay_retriever | 1.018340e-01 | True | beagle | 1.012940e-01 | True |
| 1056 | 714606013974974464 | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | Norfolk_terrier | 0.293007 | True | Labrador_retriever | 2.561980e-01 | True | golden_retriever | 1.296430e-01 | True |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 1.174020e-01 | False | black-footed_ferret | 9.993270e-02 | False |
| 1058 | 714957620017307648 | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | Great_Pyrenees | 0.251516 | True | Samoyed | 1.393460e-01 | True | kuvasz | 1.290050e-01 | True |
| 1059 | 714982300363173890 | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | Brittany_spaniel | 0.944376 | True | beagle | 2.543530e-02 | True | Ibizan_hound | 9.962040e-03 | True |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | dingo | 0.310903 | False | Chihuahua | 1.422880e-01 | True | Cardigan | 1.039450e-01 | True |
| 1061 | 715200624753819648 | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | Chihuahua | 0.956787 | True | beagle | 8.382870e-03 | True | Labrador_retriever | 8.344090e-03 | True |
| 1062 | 715220193576927233 | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | Chihuahua | 0.584026 | True | Italian_greyhound | 3.770770e-01 | True | Boston_bull | 1.740040e-02 | True |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | West_Highland_white_terrier | 0.597111 | True | soft-coated_wheaten_terrier | 1.429930e-01 | True | Lakeland_terrier | 1.367120e-01 | True |
| 1064 | 715360349751484417 | https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg | 1 | nail | 0.855552 | False | screw | 7.327730e-02 | False | padlock | 2.397040e-02 | False |
| 1065 | 715680795826982913 | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | golden_retriever | 0.990715 | True | Labrador_retriever | 2.228340e-03 | True | chow | 1.197150e-03 | True |
| 1066 | 715696743237730304 | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | Staffordshire_bullterrier | 0.427836 | True | pug | 2.214090e-01 | True | French_bulldog | 1.321350e-01 | True |
| 1067 | 715733265223708672 | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | Dandie_Dinmont | 0.740229 | True | miniature_poodle | 8.191510e-02 | True | toy_poodle | 6.374850e-02 | True |
| 1068 | 715928423106027520 | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | pug | 0.976685 | True | French_bulldog | 1.966260e-02 | True | bull_mastiff | 2.278190e-03 | True |
| 1069 | 716080869887381504 | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | golden_retriever | 0.638625 | True | chow | 2.547170e-01 | True | Tibetan_mastiff | 7.173170e-02 | True |
| 1070 | 716285507865542656 | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | Yorkshire_terrier | 0.430420 | True | silky_terrier | 1.967690e-01 | True | cairn | 7.267610e-02 | True |
| 1071 | 716439118184652801 | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | Siberian_husky | 0.396495 | True | malamute | 3.170530e-01 | True | Eskimo_dog | 2.734190e-01 | True |
| 1072 | 716791146589110272 | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | Pomeranian | 0.468751 | True | seat_belt | 1.546520e-01 | False | golden_retriever | 1.250170e-01 | True |
| 1073 | 716802964044845056 | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | malinois | 0.619577 | True | Leonberg | 1.180890e-01 | True | bull_mastiff | 6.650780e-02 | True |
| 1074 | 717009362452090881 | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | Siberian_husky | 0.506154 | True | Eskimo_dog | 2.696560e-01 | True | malamute | 6.065850e-02 | True |
| 1075 | 717047459982213120 | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | golden_retriever | 0.983548 | True | Labrador_retriever | 1.218540e-02 | True | cocker_spaniel | 2.412030e-03 | True |
| 1076 | 717421804990701568 | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | miniature_pinscher | 0.286479 | True | Italian_greyhound | 8.413390e-02 | True | beagle | 6.469700e-02 | True |
| 1077 | 717537687239008257 | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | golden_retriever | 0.779356 | True | Labrador_retriever | 5.251140e-02 | True | kuvasz | 4.981050e-02 | True |
| 1078 | 717790033953034240 | https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg | 1 | car_mirror | 0.819106 | False | minibus | 1.073830e-01 | False | cab | 3.484640e-02 | False |
| 1079 | 717841801130979328 | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | Brittany_spaniel | 0.922876 | True | English_springer | 7.011350e-02 | True | bath_towel | 2.560790e-03 | False |
| 1080 | 718234618122661888 | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | malamute | 0.370152 | True | Siberian_husky | 3.563980e-01 | True | Eskimo_dog | 2.710420e-01 | True |
| 1081 | 718246886998687744 | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | Chihuahua | 0.354488 | True | carton | 1.596720e-01 | False | Siberian_husky | 5.749830e-02 | True |
| 1082 | 718454725339934721 | https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg | 1 | hammer | 0.169865 | False | hatchet | 1.157440e-01 | False | chime | 6.809160e-02 | False |
| 1083 | 718460005985447936 | https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg | 1 | badger | 0.356946 | False | Boston_bull | 2.527810e-01 | True | kelpie | 1.134330e-01 | True |
| 1084 | 718540630683709445 | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | Maltese_dog | 0.632289 | True | West_Highland_white_terrier | 1.870550e-01 | True | cairn | 4.441290e-02 | True |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | Labrador_retriever | 0.584580 | True | German_short-haired_pointer | 3.406570e-01 | True | Chesapeake_Bay_retriever | 3.197510e-02 | True |
| 1086 | 718631497683582976 | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | Pomeranian | 0.993718 | True | Pekinese | 3.610830e-03 | True | Persian_cat | 5.248230e-04 | False |
| 1087 | 718939241951195136 | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | Pembroke | 0.766327 | True | Cardigan | 2.221260e-01 | True | toilet_tissue | 6.757230e-03 | False |
| 1088 | 718971898235854848 | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | golden_retriever | 0.140394 | True | Saint_Bernard | 1.187690e-01 | True | Labrador_retriever | 7.549170e-02 | True |
| 1089 | 719332531645071360 | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | Dandie_Dinmont | 0.224415 | True | miniature_poodle | 2.048820e-01 | True | Norfolk_terrier | 9.063290e-02 | True |
| 1090 | 719339463458033665 | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | golden_retriever | 0.765778 | True | borzoi | 7.114810e-02 | True | Leonberg | 7.037050e-02 | True |
| 1091 | 719367763014393856 | https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg | 1 | swing | 0.171486 | False | soft-coated_wheaten_terrier | 5.097100e-02 | True | Tibetan_terrier | 4.775940e-02 | True |
| 1092 | 719551379208073216 | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | malamute | 0.873233 | True | Siberian_husky | 7.643540e-02 | True | Eskimo_dog | 3.574500e-02 | True |
| 1093 | 719704490224398336 | https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg | 1 | home_theater | 0.059033 | False | window_shade | 3.829900e-02 | False | bathtub | 3.552820e-02 | False |
| 1094 | 719991154352222208 | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | golden_retriever | 0.605304 | True | cocker_spaniel | 1.309480e-01 | True | Labrador_retriever | 9.469160e-02 | True |
| 1095 | 720043174954147842 | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | Samoyed | 0.954517 | True | Eskimo_dog | 2.912960e-02 | True | white_wolf | 4.462030e-03 | False |
| 1096 | 720059472081784833 | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | Mexican_hairless | 0.451852 | True | redbone | 2.548840e-01 | True | Italian_greyhound | 9.481810e-02 | True |
| 1097 | 720340705894408192 | https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg | 1 | alp | 0.320126 | False | lawn_mower | 8.080770e-02 | False | viaduct | 6.532100e-02 | False |
| 1098 | 720389942216527872 | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | Pembroke | 0.873977 | True | Cardigan | 4.333850e-02 | True | Eskimo_dog | 1.919710e-02 | True |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | Rottweiler | 0.990312 | True | black-and-tan_coonhound | 2.494780e-03 | True | American_black_bear | 1.733120e-03 | False |
| 1100 | 720775346191278080 | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | Newfoundland | 0.489970 | True | groenendael | 1.744970e-01 | True | giant_schnauzer | 7.906670e-02 | True |
| 1101 | 720785406564900865 | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | Chihuahua | 0.896422 | True | dingo | 2.792940e-02 | False | kelpie | 1.791580e-02 | True |
| 1102 | 721001180231503872 | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | Samoyed | 0.950053 | True | washbasin | 6.321390e-03 | False | tub | 6.243350e-03 | False |
| 1103 | 721503162398597120 | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | Pomeranian | 0.997750 | True | Chihuahua | 1.248000e-03 | True | Pekinese | 7.750020e-04 | True |
| 1104 | 722613351520608256 | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | Labrador_retriever | 0.530915 | True | golden_retriever | 2.882300e-01 | True | chow | 4.485370e-02 | True |
| 1105 | 722974582966214656 | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | Great_Dane | 0.246762 | True | Greater_Swiss_Mountain_dog | 1.261310e-01 | True | Weimaraner | 8.529690e-02 | True |
| 1106 | 723179728551723008 | https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg | 1 | tennis_ball | 0.176495 | False | badger | 5.990520e-02 | False | Norwegian_elkhound | 5.685050e-02 | True |
| 1107 | 723673163800948736 | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | golden_retriever | 0.839390 | True | Labrador_retriever | 6.570580e-02 | True | hand_blower | 1.294100e-02 | False |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | teddy | 0.263256 | False | chow | 8.901020e-02 | True | Irish_terrier | 6.530570e-02 | True |
| 1109 | 723912936180330496 | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | Samoyed | 0.991772 | True | Pomeranian | 3.626380e-03 | True | chow | 2.231830e-03 | True |
| 1110 | 724004602748780546 | https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg | 3 | Siamese_cat | 0.950526 | False | pug | 1.887690e-02 | True | quilt | 7.627600e-03 | False |
| 1111 | 724046343203856385 | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | boxer | 0.826272 | True | bull_mastiff | 1.585950e-01 | True | Great_Dane | 1.185860e-02 | True |
| 1112 | 724049859469295616 | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | Border_collie | 0.581835 | True | collie | 3.445880e-01 | True | Shetland_sheepdog | 4.358420e-02 | True |
| 1113 | 724405726123311104 | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | golden_retriever | 0.240695 | True | cocker_spaniel | 2.024440e-01 | True | feather_boa | 1.593480e-01 | False |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | German_short-haired_pointer | 0.835491 | True | bluetick | 5.878800e-02 | True | English_setter | 3.720830e-02 | True |
| 1115 | 724983749226668032 | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | golden_retriever | 0.675750 | True | Great_Pyrenees | 9.516790e-02 | True | cocker_spaniel | 7.604290e-02 | True |
| 1116 | 725729321944506368 | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | boxer | 0.599076 | True | bull_mastiff | 1.773180e-01 | True | French_bulldog | 1.414610e-01 | True |
| 1117 | 725786712245440512 | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | chow | 0.335761 | True | Samoyed | 1.671730e-01 | True | kuvasz | 1.457150e-01 | True |
| 1118 | 725842289046749185 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1119 | 726224900189511680 | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | standard_poodle | 0.261112 | True | cocker_spaniel | 9.478520e-02 | True | bucket | 6.994640e-02 | False |
| 1120 | 726828223124897792 | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | miniature_pinscher | 0.255327 | True | Border_terrier | 1.812790e-01 | True | Labrador_retriever | 1.251850e-01 | True |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | soft-coated_wheaten_terrier | 0.515919 | True | Irish_terrier | 1.626550e-01 | True | Chesapeake_Bay_retriever | 1.251820e-01 | True |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | teddy | 0.821615 | False | toy_poodle | 8.374900e-02 | True | Lakeland_terrier | 3.331800e-02 | True |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | flat-coated_retriever | 0.656463 | True | Great_Dane | 8.476580e-02 | True | Labrador_retriever | 5.890850e-02 | True |
| 1124 | 727286334147182592 | https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg | 1 | bonnet | 0.146440 | False | sock | 8.309100e-02 | False | Chihuahua | 7.055420e-02 | True |
| 1125 | 727314416056803329 | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | toy_poodle | 0.827469 | True | miniature_poodle | 1.607600e-01 | True | Tibetan_terrier | 1.730750e-03 | True |
| 1126 | 727524757080539137 | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | Pomeranian | 0.958834 | True | Chihuahua | 2.409920e-02 | True | chow | 3.941050e-03 | True |
| 1127 | 727644517743104000 | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | Great_Pyrenees | 0.457164 | True | kuvasz | 3.917100e-01 | True | Labrador_retriever | 9.452260e-02 | True |
| 1128 | 727685679342333952 | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | Border_collie | 0.462408 | True | collie | 2.145560e-01 | True | Eskimo_dog | 3.560360e-02 | True |
| 1129 | 728015554473250816 | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | cocker_spaniel | 0.384559 | True | golden_retriever | 9.166100e-02 | True | sandbar | 8.179890e-02 | False |
| 1130 | 728035342121635841 | https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg | 1 | handkerchief | 0.302961 | False | Pomeranian | 2.486640e-01 | True | Shih-Tzu | 1.110150e-01 | True |
| 1131 | 728046963732717569 | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | Newfoundland | 0.255971 | True | groenendael | 1.755830e-01 | True | German_shepherd | 1.641350e-01 | True |
| 1132 | 728387165835677696 | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | collie | 0.266414 | True | Great_Pyrenees | 1.385460e-01 | True | keeshond | 1.090140e-01 | True |
| 1133 | 728409960103686147 | https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg | 1 | Siamese_cat | 0.478278 | False | Saint_Bernard | 9.424560e-02 | True | king_penguin | 8.215670e-02 | False |
| 1134 | 728653952833728512 | https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg | 2 | window_shade | 0.594333 | False | studio_couch | 5.351500e-02 | False | rotisserie | 4.124780e-02 | False |
| 1135 | 728751179681943552 | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | Saint_Bernard | 0.482050 | True | collie | 2.027400e-01 | True | borzoi | 3.797580e-02 | True |
| 1136 | 728760639972315136 | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | Pembroke | 0.939134 | True | Cardigan | 5.433560e-02 | True | Chihuahua | 5.590290e-03 | True |
| 1137 | 728986383096946689 | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | Maltese_dog | 0.952070 | True | toy_poodle | 2.727060e-02 | True | miniature_poodle | 4.874360e-03 | True |
| 1138 | 729113531270991872 | https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg | 2 | stone_wall | 0.606188 | False | prison | 6.483100e-02 | False | bannister | 4.804820e-02 | False |
| 1139 | 729463711119904772 | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | German_shepherd | 0.829307 | True | Doberman | 2.250000e-02 | True | basenji | 2.119010e-02 | True |
| 1140 | 729823566028484608 | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | kelpie | 0.218408 | True | Arabian_camel | 1.143680e-01 | False | coyote | 9.640930e-02 | False |
| 1141 | 729838605770891264 | https://pbs.twimg.com/ext_tw_video_thumb/72983... | 1 | stone_wall | 0.758218 | False | patio | 7.420540e-02 | False | prison | 1.382600e-02 | False |
| 1142 | 729854734790754305 | https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg | 1 | doormat | 0.359586 | False | china_cabinet | 5.390140e-02 | False | passenger_car | 5.266470e-02 | False |
| 1143 | 730196704625098752 | https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg | 1 | hand_blower | 0.296145 | False | chain_mail | 2.622710e-01 | False | toilet_seat | 1.494970e-01 | False |
| 1144 | 730211855403241472 | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | pug | 0.341663 | True | Norwegian_elkhound | 1.712220e-01 | True | German_shepherd | 1.246870e-01 | True |
| 1145 | 730427201120833536 | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | Eskimo_dog | 0.682082 | True | Siberian_husky | 2.892880e-01 | True | Staffordshire_bullterrier | 8.770690e-03 | True |
| 1146 | 730573383004487680 | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | American_Staffordshire_terrier | 0.810158 | True | Labrador_retriever | 5.820500e-02 | True | Weimaraner | 2.792950e-02 | True |
| 1147 | 730924654643314689 | https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg | 1 | polecat | 0.185382 | False | mink | 1.052820e-01 | False | Newfoundland | 8.624110e-02 | True |
| 1148 | 731156023742988288 | https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg | 1 | lakeside | 0.501767 | False | breakwater | 5.135060e-02 | False | king_penguin | 4.944380e-02 | False |
| 1149 | 731285275100512256 | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | Pembroke | 0.967103 | True | Cardigan | 2.112640e-02 | True | Chihuahua | 2.231070e-03 | True |
| 1150 | 732005617171337216 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1151 | 732375214819057664 | https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg | 1 | tennis_ball | 0.998673 | False | basset | 5.470530e-04 | True | golden_retriever | 3.599800e-04 | True |
| 1152 | 732585889486888962 | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | Staffordshire_bullterrier | 0.843359 | True | American_Staffordshire_terrier | 2.829030e-02 | True | miniature_pinscher | 1.679290e-02 | True |
| 1153 | 732726085725589504 | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | Pomeranian | 0.961902 | True | Samoyed | 2.428930e-02 | True | chow | 5.771780e-03 | True |
| 1154 | 732732193018155009 | https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg | 1 | koala | 0.162935 | False | Staffordshire_bullterrier | 1.279690e-01 | True | mongoose | 9.642100e-02 | False |
| 1155 | 733109485275860992 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1156 | 733460102733135873 | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | chow | 0.931275 | True | beaver | 2.883110e-02 | False | dhole | 1.737900e-02 | False |
| 1157 | 733482008106668032 | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | French_bulldog | 0.619382 | True | computer_keyboard | 1.422740e-01 | False | mouse | 5.850470e-02 | False |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | Lhasa | 0.457356 | True | Shih-Tzu | 3.712820e-01 | True | Tibetan_terrier | 4.835900e-02 | True |
| 1159 | 733828123016450049 | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | beagle | 0.472324 | True | Walker_hound | 1.217790e-01 | True | Saint_Bernard | 1.146400e-01 | True |
| 1160 | 734776360183431168 | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | Siberian_husky | 0.304902 | True | Eskimo_dog | 1.551470e-01 | True | malamute | 5.094240e-02 | True |
| 1161 | 734787690684657664 | https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg | 4 | golden_retriever | 0.883991 | True | chow | 2.354160e-02 | True | Labrador_retriever | 1.605590e-02 | True |
| 1162 | 734912297295085568 | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | Maltese_dog | 0.847292 | True | feather_boa | 5.937860e-02 | False | Old_English_sheepdog | 5.275800e-02 | True |
| 1163 | 735137028879360001 | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | Walker_hound | 0.413535 | True | beagle | 2.338910e-01 | True | English_foxhound | 1.649430e-01 | True |
| 1164 | 735256018284875776 | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | Staffordshire_bullterrier | 0.523191 | True | French_bulldog | 3.511040e-01 | True | doormat | 2.807530e-02 | False |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 7.941630e-03 | False | quilt | 6.302060e-03 | False |
| 1166 | 735635087207878657 | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | pug | 0.891871 | True | goose | 1.437660e-02 | False | fur_coat | 8.451430e-03 | False |
| 1167 | 735648611367784448 | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | Pembroke | 0.462594 | True | seat_belt | 2.618540e-01 | False | Cardigan | 1.516980e-01 | True |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | cocker_spaniel | 0.961643 | True | toy_poodle | 1.154690e-02 | True | soft-coated_wheaten_terrier | 4.903330e-03 | True |
| 1169 | 736010884653420544 | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | golden_retriever | 0.553901 | True | Labrador_retriever | 1.194750e-01 | True | bluetick | 7.747500e-02 | True |
| 1170 | 736225175608430592 | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | Labrador_retriever | 0.399217 | True | West_Highland_white_terrier | 1.377100e-01 | True | cocker_spaniel | 6.203270e-02 | True |
| 1171 | 736365877722001409 | https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg | 3 | cup | 0.473555 | False | toy_poodle | 8.260600e-02 | True | consomme | 4.829800e-02 | False |
| 1172 | 736736130620620800 | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | schipperke | 0.545502 | True | groenendael | 2.986220e-01 | True | Labrador_retriever | 3.098640e-02 | True |
| 1173 | 737310737551491075 | https://pbs.twimg.com/ext_tw_video_thumb/73731... | 1 | cliff | 0.439077 | False | lakeside | 6.289920e-02 | False | valley | 3.975850e-02 | False |
| 1174 | 737322739594330112 | https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg | 1 | guinea_pig | 0.148526 | False | solar_dish | 9.718290e-02 | False | park_bench | 5.931190e-02 | False |
| 1175 | 737445876994609152 | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | Samoyed | 0.400568 | True | Pomeranian | 3.312680e-01 | True | Maltese_dog | 4.542610e-02 | True |
| 1176 | 737678689543020544 | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | Pembroke | 0.935307 | True | Cardigan | 4.987420e-02 | True | Chihuahua | 1.160320e-02 | True |
| 1177 | 737800304142471168 | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | malamute | 0.374682 | True | Norwegian_elkhound | 3.348530e-01 | True | limousine | 6.817320e-02 | False |
| 1178 | 737826014890496000 | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | vizsla | 0.990391 | True | Rhodesian_ridgeback | 5.604740e-03 | True | Chesapeake_Bay_retriever | 2.869360e-03 | True |
| 1179 | 738156290900254721 | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | pug | 0.751758 | True | tub | 1.107480e-01 | False | bathtub | 1.041320e-01 | False |
| 1180 | 738166403467907072 | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | keeshond | 0.878886 | True | Norwegian_elkhound | 8.665940e-02 | True | malamute | 2.128030e-02 | True |
| 1181 | 738184450748633089 | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | Bedlington_terrier | 0.289471 | True | standard_poodle | 1.736850e-01 | True | Great_Pyrenees | 1.570810e-01 | True |
| 1182 | 738402415918125056 | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | cocker_spaniel | 0.346695 | True | Blenheim_spaniel | 1.939050e-01 | True | Chihuahua | 7.800000e-02 | True |
| 1183 | 738537504001953792 | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | chow | 0.808737 | True | gibbon | 2.894240e-02 | False | Pembroke | 2.649790e-02 | True |
| 1184 | 738883359779196928 | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | Labrador_retriever | 0.691137 | True | golden_retriever | 1.955580e-01 | True | Chesapeake_Bay_retriever | 1.958490e-02 | True |
| 1185 | 738885046782832640 | https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg | 1 | bath_towel | 0.878320 | False | swab | 2.063330e-02 | False | American_Staffordshire_terrier | 1.553510e-02 | True |
| 1186 | 739238157791694849 | https://pbs.twimg.com/ext_tw_video_thumb/73923... | 1 | Eskimo_dog | 0.503372 | True | Siberian_husky | 3.904130e-01 | True | malamute | 8.090120e-02 | True |
| 1187 | 739485634323156992 | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | Walker_hound | 0.640256 | True | English_foxhound | 2.297990e-01 | True | beagle | 3.775400e-02 | True |
| 1188 | 739544079319588864 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1189 | 739606147276148736 | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | Blenheim_spaniel | 0.933755 | True | cocker_spaniel | 4.171940e-02 | True | Brittany_spaniel | 6.712560e-03 | True |
| 1190 | 739844404073074688 | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | toy_poodle | 0.342397 | True | table_lamp | 1.044510e-01 | False | miniature_poodle | 7.987100e-02 | True |
| 1191 | 739932936087216128 | https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg | 1 | redbone | 0.243904 | True | beagle | 2.109750e-01 | True | vizsla | 7.644300e-02 | True |
| 1192 | 739979191639244800 | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | Irish_water_spaniel | 0.285800 | True | wig | 2.406530e-01 | False | toy_poodle | 7.491390e-02 | True |
| 1193 | 740214038584557568 | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | Chesapeake_Bay_retriever | 0.586414 | True | Labrador_retriever | 1.897820e-01 | True | vizsla | 6.760720e-02 | True |
| 1194 | 740359016048689152 | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | golden_retriever | 0.863687 | True | kuvasz | 4.859010e-02 | True | Labrador_retriever | 4.739660e-02 | True |
| 1195 | 740365076218183684 | https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg | 1 | bow_tie | 0.246313 | False | Windsor_tie | 1.724460e-01 | False | mushroom | 1.375160e-01 | False |
| 1196 | 740373189193256964 | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | golden_retriever | 0.807644 | True | kuvasz | 1.012860e-01 | True | Labrador_retriever | 2.378530e-02 | True |
| 1197 | 740676976021798912 | https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg | 1 | wombat | 0.462952 | False | Norwegian_elkhound | 2.752250e-01 | True | Siamese_cat | 4.355930e-02 | False |
| 1198 | 740699697422163968 | https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg | 1 | lawn_mower | 0.878863 | False | swing | 2.453510e-02 | False | barrow | 1.957720e-02 | False |
| 1199 | 740711788199743490 | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | toy_poodle | 0.388277 | True | Angora | 1.802640e-01 | False | Persian_cat | 4.965610e-02 | False |
| 1200 | 740995100998766593 | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | malamute | 0.454363 | True | Samoyed | 2.159670e-01 | True | Siberian_husky | 7.750030e-02 | True |
| 1201 | 741067306818797568 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1202 | 741303864243200000 | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | Chihuahua | 0.768156 | True | pug | 1.490160e-02 | True | Pekinese | 1.281580e-02 | True |
| 1203 | 741438259667034112 | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | Chesapeake_Bay_retriever | 0.292675 | True | redbone | 1.978580e-01 | True | vizsla | 1.503120e-01 | True |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | Labrador_retriever | 0.786089 | True | flat-coated_retriever | 4.865240e-02 | True | Chesapeake_Bay_retriever | 3.469330e-02 | True |
| 1205 | 741793263812808706 | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | kuvasz | 0.311325 | True | French_bulldog | 1.153490e-01 | True | Labrador_retriever | 6.853350e-02 | True |
| 1206 | 742150209887731712 | https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg | 1 | Siamese_cat | 0.112413 | False | French_bulldog | 7.141440e-02 | True | hog | 6.246540e-02 | False |
| 1207 | 742161199639494656 | https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg | 1 | balloon | 0.990736 | False | punching_bag | 4.753560e-03 | False | parachute | 4.359740e-04 | False |
| 1208 | 742385895052087300 | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | Cardigan | 0.566911 | True | Border_collie | 1.175660e-01 | True | Appenzeller | 4.766400e-02 | True |
| 1209 | 742423170473463808 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1210 | 742465774154047488 | https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg | 1 | web_site | 0.997154 | False | comic_book | 4.392210e-04 | False | desktop_computer | 2.675790e-04 | False |
| 1211 | 742528092657332225 | https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg | 2 | sunglasses | 0.900864 | False | sunglass | 4.029060e-02 | False | snorkel | 9.332920e-03 | False |
| 1212 | 743210557239623680 | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | golden_retriever | 0.930705 | True | Chesapeake_Bay_retriever | 2.593410e-02 | True | Labrador_retriever | 7.535360e-03 | True |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | kuvasz | 0.350629 | True | soft-coated_wheaten_terrier | 1.827820e-01 | True | golden_retriever | 8.766240e-02 | True |
| 1214 | 743253157753532416 | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | malamute | 0.442612 | True | Siberian_husky | 3.681370e-01 | True | Eskimo_dog | 1.778220e-01 | True |
| 1215 | 743510151680958465 | https://pbs.twimg.com/ext_tw_video_thumb/74350... | 1 | sea_lion | 0.859046 | False | tub | 2.040540e-02 | False | hippopotamus | 1.309480e-02 | False |
| 1216 | 743545585370791937 | https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg | 2 | rapeseed | 0.876875 | False | standard_poodle | 6.058350e-02 | True | Great_Pyrenees | 3.300570e-02 | True |
| 1217 | 743595368194129920 | https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg | 1 | hippopotamus | 0.505675 | False | hog | 3.707260e-01 | False | warthog | 1.882720e-02 | False |
| 1218 | 743609206067040256 | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | Weimaraner | 0.982794 | True | American_Staffordshire_terrier | 4.766400e-03 | True | Great_Dane | 3.432010e-03 | True |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | dalmatian | 0.562315 | True | Great_Dane | 4.164780e-01 | True | German_short-haired_pointer | 8.552360e-03 | True |
| 1220 | 743980027717509120 | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | bull_mastiff | 0.975730 | True | Rhodesian_ridgeback | 8.072610e-03 | True | pug | 5.570870e-03 | True |
| 1221 | 744234799360020481 | https://pbs.twimg.com/ext_tw_video_thumb/74423... | 1 | Labrador_retriever | 0.825333 | True | ice_bear | 4.468080e-02 | False | whippet | 1.844220e-02 | True |
| 1222 | 744334592493166593 | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | Samoyed | 0.960543 | True | Pomeranian | 1.219190e-02 | True | white_wolf | 4.752990e-03 | False |
| 1223 | 744709971296780288 | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | Shetland_sheepdog | 0.234431 | True | Samoyed | 1.148760e-01 | True | collie | 8.661370e-02 | True |
| 1224 | 744971049620602880 | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | toy_poodle | 0.497755 | True | golden_retriever | 2.820170e-01 | True | miniature_poodle | 9.003240e-02 | True |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | Old_English_sheepdog | 0.427481 | True | Shih-Tzu | 1.463360e-01 | True | Tibetan_terrier | 1.342690e-01 | True |
| 1226 | 745057283344719872 | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | Shetland_sheepdog | 0.963985 | True | collie | 2.620570e-02 | True | Border_collie | 4.543650e-03 | True |
| 1227 | 745314880350101504 | https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg | 2 | ice_bear | 0.807762 | False | great_white_shark | 2.704040e-02 | False | fountain | 2.205180e-02 | False |
| 1228 | 745422732645535745 | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | Labrador_retriever | 0.663800 | True | golden_retriever | 3.082610e-01 | True | ice_bear | 4.269210e-03 | False |
| 1229 | 745433870967832576 | https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg | 1 | barrow | 0.999962 | False | basset | 1.448950e-05 | True | wok | 6.060880e-06 | False |
| 1230 | 745712589599014916 | https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg | 1 | seat_belt | 0.379055 | False | chow | 6.275450e-02 | True | minibus | 5.242260e-02 | False |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | Pekinese | 0.984267 | True | Shih-Tzu | 8.941660e-03 | True | cocker_spaniel | 1.928260e-03 | True |
| 1232 | 746056683365994496 | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | Shetland_sheepdog | 0.433320 | True | collie | 3.359970e-01 | True | borzoi | 1.771790e-01 | True |
| 1233 | 746131877086527488 | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | chow | 0.575637 | True | Pomeranian | 1.959500e-01 | True | Norwich_terrier | 1.412240e-01 | True |
| 1234 | 746369468511756288 | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | German_shepherd | 0.622957 | True | malinois | 3.388840e-01 | True | wallaby | 2.416150e-02 | False |
| 1235 | 746507379341139972 | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | toy_poodle | 0.508292 | True | Lakeland_terrier | 2.344580e-01 | True | affenpinscher | 8.456280e-02 | True |
| 1236 | 746726898085036033 | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | golden_retriever | 0.256505 | True | Labrador_retriever | 2.524170e-01 | True | seat_belt | 2.031630e-01 | False |
| 1237 | 746790600704425984 | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | Boston_bull | 0.936183 | True | guinea_pig | 1.008400e-02 | False | Cardigan | 1.007700e-02 | True |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | dingo | 0.175518 | False | timber_wolf | 1.336470e-01 | False | Ibizan_hound | 1.015370e-01 | True |
| 1239 | 746872823977771008 | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | Pembroke | 0.540201 | True | beagle | 2.078350e-01 | True | Italian_greyhound | 4.356490e-02 | True |
| 1240 | 746906459439529985 | https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg | 1 | traffic_light | 0.470708 | False | fountain | 1.997760e-01 | False | space_shuttle | 6.480700e-02 | False |
| 1241 | 747103485104099331 | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | Labrador_retriever | 0.991954 | True | golden_retriever | 2.228490e-03 | True | doormat | 1.404020e-03 | False |
| 1242 | 747204161125646336 | https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg | 2 | coil | 0.533699 | False | dugong | 8.795910e-02 | False | rain_barrel | 3.922150e-02 | False |
| 1243 | 747219827526344708 | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | Shetland_sheepdog | 0.548018 | True | marmot | 1.655030e-01 | False | collie | 4.300260e-02 | True |
| 1244 | 747461612269887489 | https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg | 1 | binoculars | 0.192717 | False | barbershop | 8.583820e-02 | False | ballplayer | 8.467220e-02 | False |
| 1245 | 747512671126323200 | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | Cardigan | 0.111493 | True | malinois | 9.508920e-02 | True | German_shepherd | 8.014560e-02 | True |
| 1246 | 747594051852075008 | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | basenji | 0.389136 | True | dingo | 2.702260e-01 | False | Chihuahua | 9.893880e-02 | True |
| 1247 | 747600769478692864 | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | Chesapeake_Bay_retriever | 0.804363 | True | Weimaraner | 5.443110e-02 | True | Labrador_retriever | 4.326760e-02 | True |
| 1248 | 747816857231626240 | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | Pembroke | 0.768923 | True | Chihuahua | 2.905300e-02 | True | Shetland_sheepdog | 2.903540e-02 | True |
| 1249 | 747844099428986880 | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | Pembroke | 0.360428 | True | papillon | 2.631340e-01 | True | Chihuahua | 1.312460e-01 | True |
| 1250 | 747885874273214464 | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | kuvasz | 0.408450 | True | Samoyed | 1.413300e-01 | True | pug | 8.301840e-02 | True |
| 1251 | 747933425676525569 | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | Samoyed | 0.998201 | True | Eskimo_dog | 7.928500e-04 | True | Great_Pyrenees | 2.957500e-04 | True |
| 1252 | 747963614829678593 | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | kelpie | 0.307672 | True | Irish_terrier | 1.974860e-01 | True | dingo | 1.054750e-01 | False |
| 1253 | 748307329658011649 | https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg | 2 | paddle | 0.589066 | False | shovel | 3.806230e-02 | False | mountain_tent | 2.920330e-02 | False |
| 1254 | 748324050481647620 | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | Shetland_sheepdog | 0.880499 | True | collie | 1.079010e-01 | True | Pembroke | 3.606670e-03 | True |
| 1255 | 748346686624440324 | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | borzoi | 0.596455 | True | whippet | 2.314280e-01 | True | Saluki | 5.826140e-02 | True |
| 1256 | 748568946752774144 | https://pbs.twimg.com/ext_tw_video_thumb/74856... | 1 | Tibetan_terrier | 0.328161 | True | toy_poodle | 3.048360e-01 | True | miniature_poodle | 7.087840e-02 | True |
| 1257 | 748575535303884801 | https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg | 1 | muzzle | 0.176172 | False | seat_belt | 1.609530e-01 | False | soft-coated_wheaten_terrier | 8.649880e-02 | True |
| 1258 | 748692773788876800 | https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg | 1 | ox | 0.337871 | False | plow | 2.692870e-01 | False | oxcart | 2.456530e-01 | False |
| 1259 | 748699167502000129 | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | Pembroke | 0.849029 | True | Cardigan | 8.362880e-02 | True | kelpie | 2.439450e-02 | True |
| 1260 | 748705597323898880 | https://pbs.twimg.com/ext_tw_video_thumb/74870... | 1 | tiger_shark | 0.548497 | False | great_white_shark | 1.302520e-01 | False | scuba_diver | 1.218870e-01 | False |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | borzoi | 0.742912 | True | wire-haired_fox_terrier | 2.040820e-01 | True | English_setter | 2.103230e-02 | True |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | German_short-haired_pointer | 0.742216 | True | bluetick | 1.528100e-01 | True | English_setter | 5.183470e-02 | True |
| 1263 | 749036806121881602 | https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg | 1 | sulphur-crested_cockatoo | 0.960276 | False | West_Highland_white_terrier | 1.952230e-02 | True | Samoyed | 6.395620e-03 | True |
| 1264 | 749064354620928000 | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | pug | 0.985222 | True | Brabancon_griffon | 3.313660e-03 | True | Pekinese | 2.988880e-03 | True |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/74931... | 1 | wire-haired_fox_terrier | 0.155144 | True | Lakeland_terrier | 1.083820e-01 | True | buckeye | 7.461670e-02 | False |
| 1266 | 749395845976588288 | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | Pomeranian | 0.973715 | True | chow | 2.075810e-02 | True | keeshond | 3.784360e-03 | True |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | Chesapeake_Bay_retriever | 0.694541 | True | curly-coated_retriever | 7.633530e-02 | True | Irish_water_spaniel | 4.854950e-02 | True |
| 1268 | 749417653287129088 | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | papillon | 0.772894 | True | Shetland_sheepdog | 4.240760e-02 | True | collie | 4.231310e-02 | True |
| 1269 | 749774190421639168 | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | Pekinese | 0.879012 | True | Chihuahua | 5.485500e-02 | True | Blenheim_spaniel | 2.104100e-02 | True |
| 1270 | 749981277374128128 | https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg | 1 | bow_tie | 0.533941 | False | sunglasses | 8.082220e-02 | False | sunglass | 5.077620e-02 | False |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | Old_English_sheepdog | 0.515319 | True | West_Highland_white_terrier | 1.510400e-01 | True | soft-coated_wheaten_terrier | 5.642000e-02 | True |
| 1272 | 750011400160841729 | https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg | 1 | muzzle | 0.237620 | False | Boston_bull | 8.714980e-02 | True | sombrero | 6.850990e-02 | False |
| 1273 | 750026558547456000 | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | standard_poodle | 0.258732 | True | teddy | 1.307600e-01 | False | toy_poodle | 7.172630e-02 | True |
| 1274 | 750041628174217216 | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | Labrador_retriever | 0.252031 | True | Maltese_dog | 1.880900e-01 | True | golden_retriever | 1.330170e-01 | True |
| 1275 | 750056684286914561 | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | Saluki | 0.484428 | True | borzoi | 2.635500e-01 | True | Labrador_retriever | 7.700380e-02 | True |
| 1276 | 750071704093859840 | https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg | 2 | redbone | 0.382113 | True | malinois | 2.499430e-01 | True | miniature_pinscher | 7.092620e-02 | True |
| 1277 | 750086836815486976 | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | pug | 0.978277 | True | teddy | 3.134460e-03 | False | Brabancon_griffon | 3.061490e-03 | True |
| 1278 | 750101899009982464 | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | golden_retriever | 0.316704 | True | llama | 1.742690e-01 | False | Labrador_retriever | 1.473640e-01 | True |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | Shih-Tzu | 0.814405 | True | Lhasa | 1.752200e-01 | True | Pekinese | 8.072300e-03 | True |
| 1280 | 750132105863102464 | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | toy_poodle | 0.478018 | True | miniature_poodle | 2.074580e-01 | True | croquet_ball | 8.587890e-02 | False |
| 1281 | 750147208377409536 | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | pug | 0.977765 | True | Boston_bull | 4.794250e-03 | True | French_bulldog | 4.572840e-03 | True |
| 1282 | 750383411068534784 | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | Border_collie | 0.672791 | True | collie | 2.701880e-01 | True | papillon | 3.450390e-02 | True |
| 1283 | 750429297815552001 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1284 | 750506206503038976 | https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg | 1 | American_black_bear | 0.219166 | False | lesser_panda | 2.147150e-01 | False | titi | 9.168510e-02 | False |
| 1285 | 750719632563142656 | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | Pembroke | 0.972587 | True | Cardigan | 1.477170e-02 | True | basenji | 5.798030e-03 | True |
| 1286 | 750868782890057730 | https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg | 4 | toy_poodle | 0.912648 | True | miniature_poodle | 3.505920e-02 | True | seat_belt | 2.637560e-02 | False |
| 1287 | 751132876104687617 | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | Labrador_retriever | 0.929390 | True | Chesapeake_Bay_retriever | 3.825350e-02 | True | golden_retriever | 7.610200e-03 | True |
| 1288 | 751205363882532864 | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | Labrador_retriever | 0.947164 | True | Chesapeake_Bay_retriever | 2.059670e-02 | True | golden_retriever | 1.657920e-02 | True |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/75125... | 1 | Walker_hound | 0.178852 | True | German_short-haired_pointer | 1.157520e-01 | True | English_foxhound | 1.137960e-01 | True |
| 1290 | 751456908746354688 | https://pbs.twimg.com/ext_tw_video_thumb/75145... | 1 | golden_retriever | 0.714409 | True | Afghan_hound | 6.616260e-02 | True | chow | 2.841260e-02 | True |
| 1291 | 751538714308972544 | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | Labrador_retriever | 0.516257 | True | golden_retriever | 2.108390e-01 | True | dingo | 1.620220e-01 | False |
| 1292 | 751583847268179968 | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | dalmatian | 0.868304 | True | studio_couch | 5.962300e-02 | False | snow_leopard | 1.387630e-02 | False |
| 1293 | 751598357617971201 | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | toy_poodle | 0.757756 | True | miniature_poodle | 3.514950e-02 | True | Scottish_deerhound | 2.769820e-02 | True |
| 1294 | 751830394383790080 | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | chow | 0.703569 | True | Pomeranian | 7.663670e-02 | True | Siamese_cat | 4.595910e-02 | False |
| 1295 | 751937170840121344 | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | Lakeland_terrier | 0.424168 | True | teddy | 2.605620e-01 | False | golden_retriever | 1.274320e-01 | True |
| 1296 | 752173152931807232 | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | Labrador_retriever | 0.527659 | True | German_shepherd | 1.747650e-01 | True | Chihuahua | 4.552540e-02 | True |
| 1297 | 752309394570878976 | https://pbs.twimg.com/ext_tw_video_thumb/67535... | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/75233... | 1 | Bedlington_terrier | 0.399163 | True | standard_poodle | 8.642490e-02 | True | wire-haired_fox_terrier | 7.523110e-02 | True |
| 1299 | 752519690950500352 | https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg | 3 | swing | 0.999984 | False | Labrador_retriever | 1.002880e-05 | True | Eskimo_dog | 1.434470e-06 | True |
| 1300 | 752660715232722944 | https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg | 2 | goose | 0.339324 | False | English_setter | 5.051180e-02 | True | basset | 4.909330e-02 | True |
| 1301 | 752682090207055872 | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | German_shepherd | 0.299966 | True | Eskimo_dog | 2.783550e-01 | True | Siberian_husky | 1.785200e-01 | True |
| 1302 | 752917284578922496 | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | German_shepherd | 0.609283 | True | malinois | 3.524600e-01 | True | kelpie | 1.610520e-02 | True |
| 1303 | 753026973505581056 | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | Pembroke | 0.868511 | True | Cardigan | 1.037080e-01 | True | Shetland_sheepdog | 1.814160e-02 | True |
| 1304 | 753294487569522689 | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | chow | 0.194773 | True | monitor | 1.023050e-01 | False | Siberian_husky | 8.685470e-02 | True |
| 1305 | 753375668877008896 | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | bluetick | 0.360071 | True | crutch | 1.348160e-01 | False | tripod | 9.820660e-02 | False |
| 1306 | 753398408988139520 | https://pbs.twimg.com/ext_tw_video_thumb/75339... | 1 | whippet | 0.163794 | True | Italian_greyhound | 1.571920e-01 | True | English_foxhound | 1.429950e-01 | True |
| 1307 | 753420520834629632 | https://pbs.twimg.com/ext_tw_video_thumb/75342... | 1 | balloon | 0.267961 | False | lakeside | 8.576370e-02 | False | rapeseed | 4.080890e-02 | False |
| 1308 | 753655901052166144 | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | miniature_pinscher | 0.456092 | True | toy_terrier | 1.531260e-01 | True | Italian_greyhound | 1.441470e-01 | True |
| 1309 | 754011816964026368 | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | French_bulldog | 0.600985 | True | Boston_bull | 2.731760e-01 | True | boxer | 5.677150e-02 | True |
| 1310 | 754120377874386944 | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | chow | 0.168909 | True | Norfolk_terrier | 1.291140e-01 | True | Pomeranian | 1.208220e-01 | True |
| 1311 | 754449512966619136 | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | beagle | 0.858513 | True | basset | 7.601190e-02 | True | English_foxhound | 1.624560e-02 | True |
| 1312 | 754482103782404096 | https://pbs.twimg.com/ext_tw_video_thumb/75448... | 1 | tub | 0.596796 | False | bathtub | 3.810980e-01 | False | shower_curtain | 1.762880e-02 | False |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | rotisserie | 0.471493 | False | cash_machine | 2.508370e-01 | False | sliding_door | 1.178720e-01 | False |
| 1314 | 754856583969079297 | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | golden_retriever | 0.872385 | True | Labrador_retriever | 9.996310e-02 | True | cocker_spaniel | 6.050830e-03 | True |
| 1315 | 754874841593970688 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 1316 | 755110668769038337 | https://pbs.twimg.com/ext_tw_video_thumb/75511... | 1 | Labrador_retriever | 0.708974 | True | golden_retriever | 1.143140e-01 | True | Great_Pyrenees | 6.581340e-02 | True |
| 1317 | 755206590534418437 | https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg | 1 | web_site | 0.906673 | False | printer | 8.600270e-03 | False | carton | 4.533190e-03 | False |
| 1318 | 755955933503782912 | https://pbs.twimg.com/ext_tw_video_thumb/75595... | 1 | Pekinese | 0.596882 | True | Maltese_dog | 1.764780e-01 | True | Great_Pyrenees | 2.677530e-02 | True |
| 1319 | 756275833623502848 | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | Airedale | 0.602957 | True | Irish_terrier | 8.698080e-02 | True | bloodhound | 8.627650e-02 | True |
| 1320 | 756288534030475264 | https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg | 3 | conch | 0.925621 | False | French_bulldog | 3.249220e-02 | True | tiger_cat | 6.679080e-03 | False |
| 1321 | 756303284449767430 | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | golden_retriever | 0.981652 | True | cocker_spaniel | 6.790300e-03 | True | Labrador_retriever | 4.324510e-03 | True |
| 1322 | 756526248105566208 | https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg | 1 | geyser | 0.991273 | False | volcano | 4.672510e-03 | False | fountain | 1.234030e-03 | False |
| 1323 | 756651752796094464 | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | Pembroke | 0.294808 | True | kelpie | 2.823010e-01 | True | Cardigan | 1.126010e-01 | True |
| 1324 | 756939218950160384 | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | golden_retriever | 0.790371 | True | cocker_spaniel | 1.302680e-01 | True | Labrador_retriever | 6.462870e-02 | True |
| 1325 | 756998049151549440 | https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg | 4 | golden_retriever | 0.678555 | True | Labrador_retriever | 7.263200e-02 | True | Border_terrier | 4.903300e-02 | True |
| 1326 | 757354760399941633 | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | Italian_greyhound | 0.914667 | True | whippet | 4.777370e-02 | True | ice_lolly | 1.547680e-02 | False |
| 1327 | 757393109802180609 | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | Labrador_retriever | 0.787125 | True | Chesapeake_Bay_retriever | 1.126760e-01 | True | Rottweiler | 4.803860e-02 | True |
| 1328 | 757400162377592832 | https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg | 1 | seat_belt | 0.523926 | False | golden_retriever | 8.780030e-02 | True | Tibetan_mastiff | 7.512670e-02 | True |
| 1329 | 757596066325864448 | https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg | 1 | doormat | 0.845256 | False | wallet | 9.571800e-02 | False | wool | 2.607190e-02 | False |
| 1330 | 757597904299253760 | https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg | 1 | doormat | 0.836106 | False | wallet | 5.662690e-02 | False | purse | 5.133350e-02 | False |
| 1331 | 757611664640446465 | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | bluetick | 0.829259 | True | beagle | 1.453580e-01 | True | Walker_hound | 1.959530e-02 | True |
| 1332 | 757725642876129280 | https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg | 2 | seat_belt | 0.425176 | False | Labrador_retriever | 1.281280e-01 | True | Siamese_cat | 9.124110e-02 | False |
| 1333 | 757729163776290825 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 1334 | 757741869644341248 | https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg | 1 | skunk | 0.609715 | False | Old_English_sheepdog | 1.288990e-01 | True | Siberian_husky | 1.907610e-02 | True |
| 1335 | 758041019896193024 | https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg | 1 | bookshop | 0.794272 | False | Cardigan | 5.126530e-02 | True | Bernese_mountain_dog | 2.659630e-02 | True |
| 1336 | 758355060040593408 | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | Pembroke | 0.987643 | True | Cardigan | 1.211210e-02 | True | Siamese_cat | 1.174770e-04 | False |
| 1337 | 758405701903519748 | https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg | 4 | Chesapeake_Bay_retriever | 0.702954 | True | laptop | 9.227750e-02 | False | notebook | 3.272680e-02 | False |
| 1338 | 758467244762497024 | https://pbs.twimg.com/ext_tw_video_thumb/75846... | 1 | Labrador_retriever | 0.436377 | True | Chihuahua | 1.139560e-01 | True | American_Staffordshire_terrier | 9.968910e-02 | True |
| 1339 | 758474966123810816 | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | Pembroke | 0.546145 | True | Cardigan | 2.442000e-01 | True | German_shepherd | 1.004290e-01 | True |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | Chesapeake_Bay_retriever | 0.848514 | True | Labrador_retriever | 1.100540e-01 | True | curly-coated_retriever | 2.520140e-02 | True |
| 1341 | 758828659922702336 | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | Chesapeake_Bay_retriever | 0.480048 | True | vizsla | 2.645220e-01 | True | Weimaraner | 1.218400e-01 | True |
| 1342 | 758854675097526272 | https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg | 4 | barrow | 0.974047 | False | Old_English_sheepdog | 2.379140e-02 | True | komondor | 1.246300e-03 | True |
| 1343 | 759047813560868866 | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | Labrador_retriever | 0.778546 | True | bathing_cap | 1.542540e-01 | False | golden_retriever | 2.497160e-02 | True |
| 1344 | 759099523532779520 | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | Shetland_sheepdog | 0.129034 | True | kelpie | 1.175080e-01 | True | Siberian_husky | 1.067080e-01 | True |
| 1345 | 759159934323924993 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 1346 | 759197388317847553 | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | kuvasz | 0.511341 | True | golden_retriever | 7.689910e-02 | True | white_wolf | 6.326940e-02 | False |
| 1347 | 759447681597108224 | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | kuvasz | 0.223148 | True | Bedlington_terrier | 2.207310e-01 | True | teddy | 1.813030e-01 | False |
| 1348 | 759557299618865152 | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | golden_retriever | 0.763333 | True | Chesapeake_Bay_retriever | 1.942510e-01 | True | Labrador_retriever | 1.222540e-02 | True |
| 1349 | 759566828574212096 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1350 | 759793422261743616 | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | golden_retriever | 0.985876 | True | Labrador_retriever | 1.947770e-03 | True | kuvasz | 1.751740e-03 | True |
| 1351 | 759846353224826880 | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | Sussex_spaniel | 0.355395 | True | vizsla | 1.410940e-01 | True | otterhound | 9.219820e-02 | True |
| 1352 | 759923798737051648 | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | Labrador_retriever | 0.324579 | True | seat_belt | 1.091680e-01 | False | pug | 1.024660e-01 | True |
| 1353 | 760190180481531904 | https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg | 1 | balloon | 0.917525 | False | confectionery | 4.932910e-02 | False | maraca | 1.764780e-02 | False |
| 1354 | 760252756032651264 | https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg | 1 | radio_telescope | 0.155279 | False | dam | 1.545150e-01 | False | crane | 9.804000e-02 | False |
| 1355 | 760290219849637889 | https://pbs.twimg.com/ext_tw_video_thumb/76028... | 1 | Old_English_sheepdog | 0.302200 | True | Lhasa | 2.588030e-01 | True | briard | 1.792000e-01 | True |
| 1356 | 760539183865880579 | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | Samoyed | 0.988013 | True | malamute | 4.518240e-03 | True | West_Highland_white_terrier | 1.189250e-03 | True |
| 1357 | 760641137271070720 | https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg | 1 | axolotl | 0.132695 | False | killer_whale | 1.311130e-01 | False | sea_lion | 6.965200e-02 | False |
| 1358 | 760656994973933572 | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | golden_retriever | 0.760546 | True | Labrador_retriever | 2.320790e-01 | True | redbone | 2.874170e-03 | True |
| 1359 | 760893934457552897 | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | Blenheim_spaniel | 0.113992 | True | cocker_spaniel | 1.057800e-01 | True | borzoi | 7.393450e-02 | True |
| 1360 | 761004547850530816 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1361 | 761227390836215808 | https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg | 1 | cougar | 0.306512 | False | French_bulldog | 2.808020e-01 | True | boxer | 5.452340e-02 | True |
| 1362 | 761292947749015552 | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | standard_poodle | 0.660893 | True | Samoyed | 3.148860e-01 | True | miniature_poodle | 8.833830e-03 | True |
| 1363 | 761334018830917632 | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | Norwegian_elkhound | 0.822936 | True | malinois | 8.615250e-02 | True | German_shepherd | 6.333290e-02 | True |
| 1364 | 761371037149827077 | https://pbs.twimg.com/tweet_video_thumb/CeBym7... | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1365 | 761599872357261312 | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | Gordon_setter | 0.240427 | True | Saluki | 2.242690e-01 | True | Doberman | 1.297300e-01 | True |
| 1366 | 761672994376806400 | https://pbs.twimg.com/ext_tw_video_thumb/76167... | 1 | gondola | 0.318851 | False | sea_lion | 3.065250e-01 | False | pool_table | 1.115650e-01 | False |
| 1367 | 761745352076779520 | https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg | 1 | paddle | 0.393118 | False | canoe | 1.780880e-01 | False | lakeside | 9.971260e-02 | False |
| 1368 | 761750502866649088 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 1369 | 761976711479193600 | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | Labrador_retriever | 0.475552 | True | Chesapeake_Bay_retriever | 8.289800e-02 | True | Staffordshire_bullterrier | 4.846400e-02 | True |
| 1370 | 762035686371364864 | https://pbs.twimg.com/ext_tw_video_thumb/76203... | 1 | home_theater | 0.063152 | False | cash_machine | 4.669210e-02 | False | theater_curtain | 4.627680e-02 | False |
| 1371 | 762316489655476224 | https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg | 1 | African_grey | 0.270468 | False | Madagascar_cat | 7.618650e-02 | False | television | 3.330580e-02 | False |
| 1372 | 762464539388485633 | https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg | 4 | chow | 0.999953 | True | Tibetan_mastiff | 2.335910e-05 | True | dhole | 3.010330e-06 | False |
| 1373 | 762471784394268675 | https://pbs.twimg.com/ext_tw_video_thumb/76247... | 1 | Samoyed | 0.540276 | True | standard_poodle | 2.798020e-01 | True | toy_poodle | 1.020580e-01 | True |
| 1374 | 762699858130116608 | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | kelpie | 0.519047 | True | German_shepherd | 2.960690e-01 | True | dingo | 6.100530e-02 | False |
| 1375 | 763103485927849985 | https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg | 2 | seat_belt | 0.685821 | False | ice_bear | 8.159720e-02 | False | chow | 3.908480e-02 | True |
| 1376 | 763183847194451968 | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | miniature_poodle | 0.354674 | True | toy_poodle | 3.386420e-01 | True | teddy | 1.558280e-01 | False |
| 1377 | 763837565564780549 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1378 | 764259802650378240 | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | German_shepherd | 0.973677 | True | malinois | 2.594970e-02 | True | kelpie | 1.915680e-04 | True |
| 1379 | 764857477905154048 | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | Bernese_mountain_dog | 0.792059 | True | Appenzeller | 1.550340e-01 | True | EntleBucher | 3.837380e-02 | True |
| 1380 | 765222098633691136 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1381 | 765371061932261376 | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | golden_retriever | 0.829456 | True | Labrador_retriever | 8.937090e-02 | True | kuvasz | 1.702750e-02 | True |
| 1382 | 765395769549590528 | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | Pembroke | 0.509491 | True | Cardigan | 3.304010e-01 | True | Shetland_sheepdog | 3.887490e-02 | True |
| 1383 | 765669560888528897 | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | beagle | 0.993333 | True | Walker_hound | 2.902190e-03 | True | basset | 2.415180e-03 | True |
| 1384 | 765719909049503744 | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | golden_retriever | 0.969518 | True | Labrador_retriever | 2.169610e-02 | True | Border_terrier | 2.074550e-03 | True |
| 1385 | 766008592277377025 | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | Welsh_springer_spaniel | 0.728153 | True | basset | 1.038420e-01 | True | Brittany_spaniel | 6.241430e-02 | True |
| 1386 | 766069199026450432 | https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg | 1 | redbone | 0.484855 | True | beagle | 4.375270e-01 | True | basset | 1.058540e-02 | True |
| 1387 | 766078092750233600 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1388 | 766313316352462849 | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | toy_poodle | 0.966896 | True | miniature_poodle | 1.642430e-02 | True | cocker_spaniel | 1.022710e-02 | True |
| 1389 | 766423258543644672 | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | keeshond | 0.995823 | True | Pomeranian | 3.897210e-03 | True | Norwegian_elkhound | 2.531090e-04 | True |
| 1390 | 766693177336135680 | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | Doberman | 0.948355 | True | vizsla | 1.503200e-02 | True | Rhodesian_ridgeback | 9.630840e-03 | True |
| 1391 | 766793450729734144 | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | beagle | 0.451697 | True | basset | 1.975130e-01 | True | bloodhound | 7.269860e-02 | True |
| 1392 | 767122157629476866 | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | toy_poodle | 0.873841 | True | miniature_poodle | 5.919180e-02 | True | Irish_terrier | 3.530600e-02 | True |
| 1393 | 767191397493538821 | https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg | 1 | patio | 0.708665 | False | boathouse | 1.100560e-01 | False | pier | 3.953230e-02 | False |
| 1394 | 767500508068192258 | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | chow | 0.483228 | True | golden_retriever | 1.650630e-01 | True | Norfolk_terrier | 6.017290e-02 | True |
| 1395 | 767754930266464257 | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | vizsla | 0.307794 | True | fountain | 1.421850e-01 | False | Chesapeake_Bay_retriever | 1.139030e-01 | True |
| 1396 | 767884188863397888 | https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg | 3 | coral_reef | 0.327740 | False | cliff | 1.571820e-01 | False | lakeside | 4.880960e-02 | False |
| 1397 | 768193404517830656 | https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg | 1 | lion | 0.396984 | False | ram | 3.008510e-01 | False | cheetah | 9.447400e-02 | False |
| 1398 | 768473857036525572 | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | Labrador_retriever | 0.739170 | True | Chesapeake_Bay_retriever | 2.464880e-01 | True | kelpie | 6.892340e-03 | True |
| 1399 | 768596291618299904 | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | Great_Pyrenees | 0.729745 | True | golden_retriever | 2.379610e-01 | True | Labrador_retriever | 2.090330e-02 | True |
| 1400 | 768609597686943744 | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | basenji | 0.183283 | True | Italian_greyhound | 1.360120e-01 | True | whippet | 6.012990e-02 | True |
| 1401 | 768855141948723200 | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | chow | 0.720219 | True | Brabancon_griffon | 5.836530e-02 | True | Rottweiler | 5.511350e-02 | True |
| 1402 | 768970937022709760 | https://pbs.twimg.com/ext_tw_video_thumb/76896... | 1 | Pomeranian | 0.182358 | True | golden_retriever | 1.106580e-01 | True | mousetrap | 8.639890e-02 | False |
| 1403 | 769212283578875904 | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | golden_retriever | 0.166538 | True | Pekinese | 1.482150e-01 | True | cocker_spaniel | 8.273510e-02 | True |
| 1404 | 769695466921623552 | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | pug | 0.407117 | True | muzzle | 1.656380e-01 | False | kuvasz | 4.583720e-02 | True |
| 1405 | 769940425801170949 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1406 | 770069151037685760 | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | Boston_bull | 0.414965 | True | American_Staffordshire_terrier | 2.869850e-01 | True | Staffordshire_bullterrier | 1.149700e-01 | True |
| 1407 | 770093767776997377 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1408 | 770293558247038976 | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | Italian_greyhound | 0.931668 | True | Mexican_hairless | 3.889620e-02 | True | whippet | 1.315140e-02 | True |
| 1409 | 770414278348247044 | https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg | 1 | maillot | 0.580528 | False | maillot | 8.144890e-02 | False | golden_retriever | 5.356960e-02 | True |
| 1410 | 770655142660169732 | https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg | 1 | Madagascar_cat | 0.494803 | False | skunk | 1.611840e-01 | False | paper_towel | 9.157150e-02 | False |
| 1411 | 770772759874076672 | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | chow | 0.979515 | True | golden_retriever | 1.021870e-02 | True | Pomeranian | 4.606040e-03 | True |
| 1412 | 770787852854652928 | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | Bernese_mountain_dog | 0.787812 | True | Greater_Swiss_Mountain_dog | 1.639460e-01 | True | EntleBucher | 2.029340e-02 | True |
| 1413 | 771004394259247104 | https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg | 1 | home_theater | 0.414338 | False | iPod | 5.274130e-02 | False | pop_bottle | 4.882060e-02 | False |
| 1414 | 771014301343748096 | https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg | 1 | meerkat | 0.202335 | False | doormat | 1.117900e-01 | False | macaque | 8.892530e-02 | False |
| 1415 | 771102124360998913 | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | Labrador_retriever | 0.568789 | True | pug | 1.799180e-01 | True | Staffordshire_bullterrier | 3.443740e-02 | True |
| 1416 | 771136648247640064 | https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg | 1 | bathtub | 0.368660 | False | golden_retriever | 2.974020e-01 | True | tub | 2.017110e-01 | False |
| 1417 | 771171053431250945 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 1418 | 771380798096281600 | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | collie | 0.503728 | True | Border_collie | 4.509440e-01 | True | English_springer | 1.269280e-02 | True |
| 1419 | 771500966810099713 | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | Labrador_retriever | 0.833952 | True | golden_retriever | 1.032230e-01 | True | soccer_ball | 1.209390e-02 | False |
| 1420 | 771770456517009408 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1421 | 772102971039580160 | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | Pembroke | 0.541780 | True | Cardigan | 2.605040e-01 | True | Shetland_sheepdog | 6.370310e-02 | True |
| 1422 | 772114945936949249 | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | Chihuahua | 0.803293 | True | toy_terrier | 5.298000e-02 | True | Italian_greyhound | 3.723880e-02 | True |
| 1423 | 772117678702071809 | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | Labrador_retriever | 0.217821 | True | beagle | 1.576770e-01 | True | golden_retriever | 1.277260e-01 | True |
| 1424 | 772152991789019136 | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | golden_retriever | 0.275318 | True | Irish_setter | 1.009880e-01 | True | vizsla | 7.352490e-02 | True |
| 1425 | 772193107915964416 | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | Pembroke | 0.367945 | True | Chihuahua | 2.235220e-01 | True | Pekinese | 1.648710e-01 | True |
| 1426 | 772581559778025472 | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | Newfoundland | 0.574345 | True | Border_collie | 1.283520e-01 | True | Saint_Bernard | 5.947550e-02 | True |
| 1427 | 772615324260794368 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1428 | 772826264096874500 | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | basset | 0.915351 | True | Walker_hound | 7.241590e-02 | True | beagle | 8.228940e-03 | True |
| 1429 | 772877495989305348 | https://pbs.twimg.com/ext_tw_video_thumb/77287... | 1 | tabby | 0.218303 | False | Norwegian_elkhound | 1.385230e-01 | True | wombat | 7.421720e-02 | False |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | Blenheim_spaniel | 0.427766 | True | Shih-Tzu | 2.192560e-01 | True | Welsh_springer_spaniel | 1.446140e-01 | True |
| 1431 | 773247561583001600 | https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg | 1 | seat_belt | 0.713588 | False | miniature_pinscher | 8.336880e-02 | True | Brabancon_griffon | 7.569610e-02 | True |
| 1432 | 773308824254029826 | https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg | 1 | shopping_cart | 0.572349 | False | Labrador_retriever | 1.514060e-01 | True | shopping_basket | 1.071020e-01 | False |
| 1433 | 773547596996571136 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | Old_English_sheepdog | 0.969311 | True | Maltese_dog | 1.324300e-02 | True | soft-coated_wheaten_terrier | 4.857310e-03 | True |
| 1435 | 773704687002451968 | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | silky_terrier | 0.324251 | True | Yorkshire_terrier | 1.812100e-01 | True | Airedale | 1.334360e-01 | True |
| 1436 | 773922284943896577 | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | Pomeranian | 0.554331 | True | Samoyed | 4.321580e-01 | True | chow | 3.199420e-03 | True |
| 1437 | 773985732834758656 | https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg | 4 | giant_panda | 0.451149 | False | fur_coat | 1.480010e-01 | False | pug | 1.095700e-01 | True |
| 1438 | 774314403806253056 | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | Eskimo_dog | 0.596045 | True | Siberian_husky | 2.230670e-01 | True | Saluki | 3.632470e-02 | True |
| 1439 | 774639387460112384 | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | Walker_hound | 0.627593 | True | basenji | 1.287050e-01 | True | Ibizan_hound | 1.262820e-01 | True |
| 1440 | 774757898236878852 | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | toy_poodle | 0.719941 | True | miniature_poodle | 2.515460e-01 | True | Lakeland_terrier | 7.008380e-03 | True |
| 1441 | 775085132600442880 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1442 | 775364825476165632 | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | beagle | 0.571229 | True | Chihuahua | 1.752570e-01 | True | Pembroke | 3.430630e-02 | True |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 2.139020e-03 | False | menu | 2.115360e-03 | False |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 2.947280e-02 | False | rhinoceros_beetle | 2.780610e-02 | False |
| 1445 | 775842724423557120 | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | chow | 0.520022 | True | bath_towel | 2.877470e-02 | False | French_bulldog | 2.599010e-02 | True |
| 1446 | 775898661951791106 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1447 | 776088319444877312 | https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg | 3 | web_site | 0.999916 | False | pug | 7.657020e-05 | True | menu | 2.164680e-06 | False |
| 1448 | 776113305656188928 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | Rottweiler | 0.502228 | True | black-and-tan_coonhound | 1.545940e-01 | True | bloodhound | 1.351760e-01 | True |
| 1450 | 776218204058357768 | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | Samoyed | 0.940326 | True | Pomeranian | 5.552720e-02 | True | keeshond | 2.226350e-03 | True |
| 1451 | 776477788987613185 | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | Labrador_retriever | 0.884839 | True | Chesapeake_Bay_retriever | 5.756510e-02 | True | paintbrush | 5.766080e-03 | False |
| 1452 | 776813020089548800 | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | toy_poodle | 0.516610 | True | miniature_poodle | 2.550330e-01 | True | standard_poodle | 1.689890e-01 | True |
| 1453 | 776819012571455488 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 1454 | 777189768882946048 | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | Chihuahua | 0.988412 | True | Mexican_hairless | 4.177220e-03 | True | hog | 1.506580e-03 | False |
| 1455 | 777621514455814149 | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | chow | 0.999823 | True | Norwich_terrier | 5.644850e-05 | True | Pomeranian | 2.768060e-05 | True |
| 1456 | 777641927919427584 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1457 | 777684233540206592 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1458 | 777885040357281792 | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | Afghan_hound | 0.123529 | True | basset | 1.196820e-01 | True | Siberian_husky | 1.087090e-01 | True |
| 1459 | 778027034220126208 | https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg | 1 | clumber | 0.946718 | True | cocker_spaniel | 1.594990e-02 | True | Lhasa | 6.519110e-03 | True |
| 1460 | 778039087836069888 | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | German_shepherd | 0.717776 | True | malinois | 1.111750e-01 | True | Norwegian_elkhound | 5.880240e-02 | True |
| 1461 | 778286810187399168 | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | Boston_bull | 0.322070 | True | pug | 2.299030e-01 | True | muzzle | 1.014200e-01 | False |
| 1462 | 778383385161035776 | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | collie | 0.345266 | True | borzoi | 3.128230e-01 | True | Border_collie | 2.130110e-01 | True |
| 1463 | 778396591732486144 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 1464 | 778408200802557953 | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | Pembroke | 0.848362 | True | Cardigan | 1.081240e-01 | True | beagle | 1.194170e-02 | True |
| 1465 | 778624900596654080 | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | Airedale | 0.786089 | True | Irish_terrier | 1.214880e-01 | True | Lakeland_terrier | 1.460310e-02 | True |
| 1466 | 778650543019483137 | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | German_shepherd | 0.515699 | True | malinois | 3.002920e-01 | True | kelpie | 8.702230e-02 | True |
| 1467 | 778748913645780993 | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | Staffordshire_bullterrier | 0.351434 | True | boxer | 2.014780e-01 | True | American_Staffordshire_terrier | 1.428380e-01 | True |
| 1468 | 778990705243029504 | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | cocker_spaniel | 0.715351 | True | Labrador_retriever | 2.070560e-01 | True | Chihuahua | 2.851940e-02 | True |
| 1469 | 779056095788752897 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | toy_poodle | 0.431080 | True | soft-coated_wheaten_terrier | 6.036490e-02 | True | cocker_spaniel | 5.984540e-02 | True |
| 1471 | 779377524342161408 | https://pbs.twimg.com/ext_tw_video_thumb/77937... | 1 | sundial | 0.170921 | False | cash_machine | 6.035860e-02 | False | maze | 5.498140e-02 | False |
| 1472 | 779834332596887552 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1473 | 780192070812196864 | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | vizsla | 0.144012 | True | mongoose | 9.147360e-02 | False | hatchet | 7.354470e-02 | False |
| 1474 | 780459368902959104 | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | Great_Dane | 0.382491 | True | German_shepherd | 3.120260e-01 | True | bull_mastiff | 3.327190e-02 | True |
| 1475 | 780476555013349377 | https://pbs.twimg.com/tweet_video_thumb/CtTFZZ... | 1 | pug | 0.919255 | True | French_bulldog | 3.235030e-02 | True | bull_mastiff | 2.846790e-02 | True |
| 1476 | 780496263422808064 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1477 | 780543529827336192 | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | golden_retriever | 0.628312 | True | Labrador_retriever | 3.173650e-01 | True | Tibetan_mastiff | 1.226010e-02 | True |
| 1478 | 780601303617732608 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1479 | 780800785462489090 | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | Siberian_husky | 0.951963 | True | Eskimo_dog | 3.534610e-02 | True | Pembroke | 8.861940e-03 | True |
| 1480 | 780858289093574656 | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | Chesapeake_Bay_retriever | 0.488555 | True | Sussex_spaniel | 2.716550e-01 | True | kelpie | 1.069130e-01 | True |
| 1481 | 780931614150983680 | https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg | 1 | padlock | 0.731564 | False | necklace | 6.546160e-02 | False | chain | 3.646910e-02 | False |
| 1482 | 781163403222056960 | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | Shetland_sheepdog | 0.973841 | True | collie | 2.518760e-02 | True | Border_collie | 2.973110e-04 | True |
| 1483 | 781251288990355457 | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | Mexican_hairless | 0.887771 | True | Italian_greyhound | 3.066640e-02 | True | seat_belt | 2.672980e-02 | False |
| 1484 | 781524693396357120 | https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg | 1 | tennis_ball | 0.994712 | False | Chesapeake_Bay_retriever | 3.522500e-03 | True | Labrador_retriever | 9.214390e-04 | True |
| 1485 | 781661882474196992 | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | Pembroke | 0.438087 | True | golden_retriever | 2.269540e-01 | True | collie | 7.065160e-02 | True |
| 1486 | 781955203444699136 | https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg | 1 | pool_table | 0.179568 | False | dining_table | 1.543960e-01 | False | microwave | 3.369050e-02 | False |
| 1487 | 782021823840026624 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | briard | 0.504427 | True | soft-coated_wheaten_terrier | 3.906780e-01 | True | Lhasa | 3.459550e-02 | True |
| 1489 | 782598640137187329 | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | malamute | 0.840871 | True | Tibetan_mastiff | 1.405160e-01 | True | Eskimo_dog | 1.201160e-02 | True |
| 1490 | 782722598790725632 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1491 | 782747134529531904 | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | golden_retriever | 0.560699 | True | otterhound | 1.994820e-01 | True | clumber | 4.068180e-02 | True |
| 1492 | 782969140009107456 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1493 | 783085703974514689 | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | Chesapeake_Bay_retriever | 0.240602 | True | Airedale | 1.640880e-01 | True | boxer | 1.345060e-01 | True |
| 1494 | 783334639985389568 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1495 | 783347506784731136 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 1496 | 783391753726550016 | https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg | 4 | Norwegian_elkhound | 0.877130 | True | cairn | 8.624060e-02 | True | keeshond | 1.101910e-02 | True |
| 1497 | 783466772167098368 | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | Chihuahua | 0.789000 | True | miniature_pinscher | 1.159160e-01 | True | toy_terrier | 3.629390e-02 | True |
| 1498 | 783695101801398276 | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | chow | 0.314265 | True | golden_retriever | 3.004350e-01 | True | Australian_terrier | 4.948690e-02 | True |
| 1499 | 783821107061198850 | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | Lakeland_terrier | 0.265659 | True | golden_retriever | 1.964140e-01 | True | standard_poodle | 1.335340e-01 | True |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 1.362450e-01 | False | three-toed_sloth | 1.174640e-01 | False |
| 1501 | 784431430411685888 | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | miniature_poodle | 0.744819 | True | toy_poodle | 2.431920e-01 | True | standard_poodle | 1.092020e-02 | True |
| 1502 | 784517518371221505 | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | malamute | 0.757764 | True | Eskimo_dog | 1.512480e-01 | True | Siberian_husky | 8.484020e-02 | True |
| 1503 | 784826020293709826 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1504 | 785170936622350336 | https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg | 2 | seat_belt | 0.891193 | False | Eskimo_dog | 2.749440e-02 | True | Samoyed | 1.953030e-02 | True |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | teddy | 0.674893 | False | cradle | 5.673960e-02 | False | chow | 5.613700e-02 | True |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | miniature_pinscher | 0.436023 | True | black-and-tan_coonhound | 2.580490e-01 | True | Rottweiler | 1.452310e-01 | True |
| 1507 | 785639753186217984 | https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg | 1 | porcupine | 0.978042 | False | sea_urchin | 6.106300e-03 | False | echidna | 5.441970e-03 | False |
| 1508 | 785872687017132033 | https://pbs.twimg.com/ext_tw_video_thumb/78587... | 1 | Great_Pyrenees | 0.392108 | True | golden_retriever | 1.983580e-01 | True | Pekinese | 1.433280e-01 | True |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | teddy | 0.972070 | False | toy_poodle | 8.492620e-03 | True | chow | 2.882710e-03 | True |
| 1510 | 786036967502913536 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1511 | 786233965241827333 | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | Labrador_retriever | 0.478193 | True | schipperke | 2.248170e-01 | True | Staffordshire_bullterrier | 7.739560e-02 | True |
| 1512 | 786363235746385920 | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | golden_retriever | 0.929266 | True | Labrador_retriever | 6.286670e-02 | True | Saluki | 2.156690e-03 | True |
| 1513 | 786595970293370880 | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | Pembroke | 0.709512 | True | Cardigan | 2.871780e-01 | True | chow | 5.701760e-04 | True |
| 1514 | 786664955043049472 | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | Leonberg | 0.512034 | True | keeshond | 4.648160e-01 | True | Pomeranian | 7.812490e-03 | True |
| 1515 | 786709082849828864 | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | Pomeranian | 0.467321 | True | Persian_cat | 1.229780e-01 | False | chow | 1.026540e-01 | True |
| 1516 | 786963064373534720 | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | golden_retriever | 0.915303 | True | Saluki | 4.621260e-02 | True | Labrador_retriever | 3.750410e-02 | True |
| 1517 | 787322443945877504 | https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg | 1 | seat_belt | 0.747739 | False | golden_retriever | 1.057030e-01 | True | dingo | 1.725680e-02 | False |
| 1518 | 787397959788929025 | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | Chihuahua | 0.900483 | True | toy_terrier | 2.108450e-02 | True | miniature_pinscher | 1.948400e-02 | True |
| 1519 | 787717603741622272 | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | German_shepherd | 0.992339 | True | malinois | 4.920390e-03 | True | kelpie | 8.528020e-04 | True |
| 1520 | 787810552592695296 | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | pug | 0.362835 | True | French_bulldog | 2.218640e-01 | True | English_setter | 8.041830e-02 | True |
| 1521 | 788039637453406209 | https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg | 1 | beach_wagon | 0.362925 | False | minivan | 3.047590e-01 | False | limousine | 1.017020e-01 | False |
| 1522 | 788070120937619456 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1523 | 788150585577050112 | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | chow | 0.814145 | True | Pomeranian | 1.127040e-01 | True | Chihuahua | 1.588320e-02 | True |
| 1524 | 788178268662984705 | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | Samoyed | 0.735480 | True | Pomeranian | 7.510100e-02 | True | Arctic_fox | 3.607190e-02 | False |
| 1525 | 788412144018661376 | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | golden_retriever | 0.805238 | True | Labrador_retriever | 1.137980e-01 | True | Brittany_spaniel | 3.855870e-02 | True |
| 1526 | 788765914992902144 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1527 | 788908386943430656 | https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg | 1 | remote_control | 0.881538 | False | oscilloscope | 3.551310e-02 | False | golden_retriever | 3.408970e-02 | True |
| 1528 | 789137962068021249 | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | Chihuahua | 0.746135 | True | Pekinese | 7.038340e-02 | True | Pembroke | 4.923690e-02 | True |
| 1529 | 789268448748703744 | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | malamute | 0.812860 | True | Siberian_husky | 1.208530e-01 | True | Eskimo_dog | 2.426930e-02 | True |
| 1530 | 789530877013393408 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1531 | 789599242079838210 | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | Chesapeake_Bay_retriever | 0.878822 | True | beagle | 1.857030e-02 | True | Labrador_retriever | 1.749850e-02 | True |
| 1532 | 789628658055020548 | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | chow | 0.260702 | True | cougar | 8.814270e-02 | False | Pomeranian | 7.988310e-02 | True |
| 1533 | 789986466051088384 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1535 | 790337589677002753 | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | Pembroke | 0.658808 | True | Cardigan | 1.530960e-01 | True | toy_terrier | 1.022990e-01 | True |
| 1536 | 790581949425475584 | https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg | 2 | refrigerator | 0.998886 | False | malinois | 1.529990e-04 | True | kelpie | 1.308170e-04 | True |
| 1537 | 790698755171364864 | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | Bernese_mountain_dog | 0.996541 | True | EntleBucher | 1.056980e-03 | True | Appenzeller | 9.979070e-04 | True |
| 1538 | 790723298204217344 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1539 | 790946055508652032 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | cocker_spaniel | 0.349195 | True | flat-coated_retriever | 3.095350e-01 | True | Newfoundland | 1.047680e-01 | True |
| 1541 | 791026214425268224 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1542 | 791312159183634433 | https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg | 4 | miniature_pinscher | 0.892925 | True | toy_terrier | 9.552380e-02 | True | Doberman | 3.544260e-03 | True |
| 1543 | 791406955684368384 | https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg | 4 | Pembroke | 0.972629 | True | Cardigan | 2.702590e-02 | True | basenji | 1.525020e-04 | True |
| 1544 | 791672322847637504 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1545 | 792050063153438720 | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | komondor | 0.942856 | True | swab | 5.271520e-02 | False | Tibetan_terrier | 2.743000e-03 | True |
| 1546 | 792394556390137856 | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | cocker_spaniel | 0.746387 | True | Irish_setter | 9.161510e-02 | True | miniature_poodle | 6.107820e-02 | True |
| 1547 | 792773781206999040 | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | Yorkshire_terrier | 0.912804 | True | silky_terrier | 6.782250e-02 | True | Australian_terrier | 4.450690e-03 | True |
| 1548 | 792883833364439040 | https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg | 3 | jack-o'-lantern | 0.999306 | False | basketball | 1.131290e-04 | False | standard_poodle | 8.314510e-05 | True |
| 1549 | 792913359805018113 | https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg | 4 | web_site | 0.226716 | False | lighter | 8.194140e-02 | False | switch | 3.900860e-02 | False |
| 1550 | 793120401413079041 | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | Labrador_retriever | 0.724944 | True | golden_retriever | 1.697440e-01 | True | kuvasz | 3.550230e-02 | True |
| 1551 | 793135492858580992 | https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg | 1 | bakery | 0.737041 | False | saltshaker | 5.239590e-02 | False | teddy | 4.659260e-02 | False |
| 1552 | 793150605191548928 | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | Italian_greyhound | 0.193869 | True | bluetick | 1.603800e-01 | True | standard_poodle | 1.259820e-01 | True |
| 1553 | 793165685325201412 | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | golden_retriever | 0.946224 | True | Labrador_retriever | 3.647660e-02 | True | doormat | 2.352850e-03 | False |
| 1554 | 793180763617361921 | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | Lakeland_terrier | 0.266824 | True | Irish_terrier | 2.187830e-01 | True | Airedale | 1.329600e-01 | True |
| 1555 | 793195938047070209 | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | Labrador_retriever | 0.654762 | True | golden_retriever | 7.410000e-02 | True | Chihuahua | 4.233930e-02 | True |
| 1556 | 793210959003287553 | https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg | 1 | doormat | 0.874431 | False | French_bulldog | 1.875910e-02 | True | Boston_bull | 1.513440e-02 | True |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | wire-haired_fox_terrier | 0.456047 | True | Lakeland_terrier | 2.734280e-01 | True | English_springer | 8.364330e-02 | True |
| 1558 | 793241302385262592 | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | golden_retriever | 0.559308 | True | Labrador_retriever | 3.902220e-01 | True | cocker_spaniel | 3.631570e-02 | True |
| 1559 | 793256262322548741 | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | basset | 0.207622 | True | Walker_hound | 6.057420e-02 | True | beagle | 4.122050e-02 | True |
| 1560 | 793271401113350145 | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | Siberian_husky | 0.231695 | True | Eskimo_dog | 2.067490e-01 | True | Pembroke | 7.011950e-02 | True |
| 1561 | 793286476301799424 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1562 | 793500921481273345 | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | golden_retriever | 0.326122 | True | Labrador_retriever | 2.199040e-01 | True | Chesapeake_Bay_retriever | 1.633660e-01 | True |
| 1563 | 793601777308463104 | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | miniature_pinscher | 0.538981 | True | Chihuahua | 2.178300e-01 | True | toy_terrier | 8.914870e-02 | True |
| 1564 | 793614319594401792 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1565 | 793845145112371200 | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | Old_English_sheepdog | 0.765277 | True | Bedlington_terrier | 1.127530e-01 | True | Kerry_blue_terrier | 4.766170e-02 | True |
| 1566 | 793962221541933056 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1567 | 794205286408003585 | https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg | 3 | pedestal | 0.662660 | False | fountain | 2.948270e-01 | False | brass | 2.037110e-02 | False |
| 1568 | 794332329137291264 | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | Samoyed | 0.988307 | True | malamute | 4.906350e-03 | True | Great_Pyrenees | 2.901290e-03 | True |
| 1569 | 794355576146903043 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | teddy | 0.569566 | False | bath_towel | 1.737450e-01 | False | toy_poodle | 3.766180e-02 | True |
| 1571 | 794983741416415232 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1572 | 795076730285391872 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1573 | 795400264262053889 | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | golden_retriever | 0.925494 | True | Labrador_retriever | 5.924080e-02 | True | tennis_ball | 4.495340e-03 | False |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/79546... | 1 | golden_retriever | 0.193082 | True | Chesapeake_Bay_retriever | 1.579270e-01 | True | soft-coated_wheaten_terrier | 1.246840e-01 | True |
| 1575 | 796031486298386433 | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | golden_retriever | 0.893775 | True | Labrador_retriever | 7.013980e-02 | True | doormat | 8.418530e-03 | False |
| 1576 | 796080075804475393 | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | chow | 0.973846 | True | Tibetan_mastiff | 1.410990e-02 | True | gibbon | 2.358320e-03 | False |
| 1577 | 796116448414461957 | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | Cardigan | 0.700182 | True | Pembroke | 2.607380e-01 | True | papillon | 1.710990e-02 | True |
| 1578 | 796149749086875649 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1579 | 796177847564038144 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1580 | 796387464403357696 | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | Pekinese | 0.461164 | True | Pomeranian | 2.886500e-01 | True | Siamese_cat | 5.242300e-02 | False |
| 1581 | 796484825502875648 | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | cocker_spaniel | 0.116924 | True | seat_belt | 1.075110e-01 | False | Australian_terrier | 9.984340e-02 | True |
| 1582 | 796759840936919040 | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | American_Staffordshire_terrier | 0.463996 | True | Staffordshire_bullterrier | 1.555660e-01 | True | Weimaraner | 1.375870e-01 | True |
| 1583 | 796865951799083009 | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | Cardigan | 0.839129 | True | Boston_bull | 8.069850e-02 | True | Pembroke | 3.450500e-02 | True |
| 1584 | 797236660651966464 | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | collie | 0.767005 | True | Border_collie | 1.008440e-01 | True | kelpie | 4.836810e-02 | True |
| 1585 | 797545162159308800 | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | Pembroke | 0.954089 | True | Cardigan | 3.364390e-02 | True | papillon | 9.735660e-03 | True |
| 1586 | 797971864723324932 | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | American_Staffordshire_terrier | 0.489845 | True | Chihuahua | 3.057600e-01 | True | Staffordshire_bullterrier | 7.279910e-02 | True |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | Pekinese | 0.524583 | True | Shih-Tzu | 1.029310e-01 | True | Pomeranian | 9.789310e-02 | True |
| 1588 | 798340744599797760 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1589 | 798628517273620480 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 1590 | 798644042770751489 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 1591 | 798665375516884993 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 1592 | 798673117451325440 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 1593 | 798694562394996736 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 1594 | 798697898615730177 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1595 | 798925684722855936 | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | West_Highland_white_terrier | 0.539463 | True | cairn | 1.848970e-01 | True | Norfolk_terrier | 1.630240e-01 | True |
| 1596 | 798933969379225600 | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | Siberian_husky | 0.703224 | True | Eskimo_dog | 2.293510e-01 | True | malamute | 4.435080e-02 | True |
| 1597 | 799063482566066176 | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | Norfolk_terrier | 0.334436 | True | Norwich_terrier | 2.315730e-01 | True | Australian_terrier | 2.142030e-01 | True |
| 1598 | 799297110730567681 | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | malamute | 0.985028 | True | Siberian_husky | 5.834420e-03 | True | Eskimo_dog | 5.442810e-03 | True |
| 1599 | 799422933579902976 | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | miniature_pinscher | 0.583630 | True | redbone | 2.760950e-01 | True | toy_terrier | 1.855010e-02 | True |
| 1600 | 799757965289017345 | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | Border_collie | 0.442534 | True | collie | 2.886840e-01 | True | Shetland_sheepdog | 1.963990e-01 | True |
| 1601 | 799774291445383169 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1602 | 800018252395122689 | https://pbs.twimg.com/ext_tw_video_thumb/80001... | 1 | vacuum | 0.289485 | False | punching_bag | 2.432970e-01 | False | barbell | 1.436300e-01 | False |
| 1603 | 800141422401830912 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1604 | 800388270626521089 | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | golden_retriever | 0.359860 | True | Pembroke | 1.942070e-01 | True | collie | 1.546030e-01 | True |
| 1605 | 800443802682937345 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | teddy | 0.311928 | False | ice_bear | 1.846570e-01 | False | Christmas_stocking | 1.732290e-01 | False |
| 1607 | 800513324630806528 | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | Pembroke | 0.828904 | True | Cardigan | 1.673730e-01 | True | Chihuahua | 7.659340e-04 | True |
| 1608 | 800751577355128832 | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | cocker_spaniel | 0.771984 | True | miniature_poodle | 7.665280e-02 | True | toy_poodle | 3.961830e-02 | True |
| 1609 | 801115127852503040 | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | dalmatian | 0.823356 | True | English_setter | 9.460190e-02 | True | bluetick | 2.195340e-02 | True |
| 1610 | 801167903437357056 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1611 | 801285448605831168 | https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg | 1 | minivan | 0.789376 | False | beach_wagon | 8.112500e-02 | False | convertible | 6.453380e-02 | False |
| 1612 | 801538201127157760 | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | Pembroke | 0.550506 | True | Cardigan | 3.066120e-01 | True | Shetland_sheepdog | 5.423000e-02 | True |
| 1613 | 801958328846974976 | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | Staffordshire_bullterrier | 0.327887 | True | American_Staffordshire_terrier | 2.719160e-01 | True | Labrador_retriever | 2.476190e-01 | True |
| 1614 | 802239329049477120 | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | Eskimo_dog | 0.482498 | True | Siberian_husky | 3.357740e-01 | True | malamute | 1.345890e-01 | True |
| 1615 | 802247111496568832 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1616 | 802265048156610565 | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | Labrador_retriever | 0.897162 | True | beagle | 1.689480e-02 | True | Rhodesian_ridgeback | 1.206060e-02 | True |
| 1617 | 802323869084381190 | https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg | 4 | home_theater | 0.765069 | False | television | 2.035780e-01 | False | entertainment_center | 1.864350e-02 | False |
| 1618 | 802572683846291456 | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | golden_retriever | 0.610171 | True | Labrador_retriever | 1.732520e-01 | True | cocker_spaniel | 1.632570e-01 | True |
| 1619 | 802624713319034886 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1620 | 802952499103731712 | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | chow | 0.944032 | True | golden_retriever | 1.723980e-02 | True | Pomeranian | 1.208480e-02 | True |
| 1621 | 803276597545603072 | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | Pembroke | 0.457086 | True | chow | 3.078010e-01 | True | golden_retriever | 4.998820e-02 | True |
| 1622 | 803380650405482500 | https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg | 1 | bookcase | 0.890601 | False | entertainment_center | 1.928740e-02 | False | file | 9.489540e-03 | False |
| 1623 | 803638050916102144 | https://pbs.twimg.com/ext_tw_video_thumb/80363... | 1 | Labrador_retriever | 0.372776 | True | golden_retriever | 3.436660e-01 | True | Great_Pyrenees | 6.724230e-02 | True |
| 1624 | 803692223237865472 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 1625 | 803773340896923648 | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | miniature_pinscher | 0.817066 | True | redbone | 5.970650e-02 | True | Irish_terrier | 3.419520e-02 | True |
| 1626 | 804026241225523202 | https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg | 1 | web_site | 0.492709 | False | envelope | 5.056580e-02 | False | guillotine | 1.529690e-02 | False |
| 1627 | 804413760345620481 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1628 | 804738756058218496 | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | Tibetan_mastiff | 0.915790 | True | German_shepherd | 6.247970e-02 | True | Leonberg | 8.297490e-03 | True |
| 1629 | 805207613751304193 | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | Pembroke | 0.244705 | True | Rhodesian_ridgeback | 1.804610e-01 | True | Cardigan | 9.466370e-02 | True |
| 1630 | 805487436403003392 | https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg | 3 | shield | 0.587830 | False | barrel | 9.017990e-02 | False | sundial | 6.919860e-02 | False |
| 1631 | 805520635690676224 | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | malinois | 0.643147 | True | German_shepherd | 1.866420e-01 | True | Border_terrier | 1.093450e-01 | True |
| 1632 | 805826884734976000 | https://pbs.twimg.com/ext_tw_video_thumb/80582... | 1 | Siberian_husky | 0.248926 | True | American_Staffordshire_terrier | 9.831330e-02 | True | Eskimo_dog | 8.018850e-02 | True |
| 1633 | 805932879469572096 | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | Norwegian_elkhound | 0.657967 | True | keeshond | 3.191360e-01 | True | Leonberg | 7.946740e-03 | True |
| 1634 | 805958939288408065 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1635 | 806219024703037440 | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | chow | 0.835102 | True | Pomeranian | 4.078290e-02 | True | Eskimo_dog | 2.127450e-02 | True |
| 1636 | 806242860592926720 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1637 | 806542213899489280 | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | vizsla | 0.938617 | True | Brittany_spaniel | 3.673890e-02 | True | Chesapeake_Bay_retriever | 3.971490e-03 | True |
| 1638 | 806629075125202948 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1639 | 807010152071229440 | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | golden_retriever | 0.610807 | True | Irish_setter | 2.136420e-01 | True | Welsh_springer_spaniel | 3.188660e-02 | True |
| 1640 | 807059379405148160 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1641 | 807106840509214720 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1642 | 807621403335917568 | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | golden_retriever | 0.873233 | True | cocker_spaniel | 3.369330e-02 | True | chow | 2.040840e-02 | True |
| 1643 | 808001312164028416 | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | Labrador_retriever | 0.730959 | True | Staffordshire_bullterrier | 1.307260e-01 | True | American_Staffordshire_terrier | 2.885260e-02 | True |
| 1644 | 808106460588765185 | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | golden_retriever | 0.426183 | True | Labrador_retriever | 2.574470e-01 | True | Great_Pyrenees | 1.264820e-01 | True |
| 1645 | 808134635716833280 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1646 | 808501579447930884 | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | Airedale | 0.454239 | True | cocker_spaniel | 2.193230e-01 | True | Irish_terrier | 9.319300e-02 | True |
| 1647 | 808733504066486276 | https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg | 1 | seat_belt | 0.779137 | False | toy_poodle | 3.692710e-02 | True | golden_retriever | 1.697250e-02 | True |
| 1648 | 808838249661788160 | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | Rottweiler | 0.369530 | True | miniature_pinscher | 1.948670e-01 | True | kelpie | 1.601040e-01 | True |
| 1649 | 809084759137812480 | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | vizsla | 0.911412 | True | bloodhound | 1.713390e-02 | True | Labrador_retriever | 1.176100e-02 | True |
| 1650 | 809220051211603969 | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | Pomeranian | 0.819511 | True | Samoyed | 1.412410e-01 | True | Pembroke | 1.345520e-02 | True |
| 1651 | 809448704142938112 | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | Greater_Swiss_Mountain_dog | 0.375415 | True | Cardigan | 1.343170e-01 | True | English_springer | 7.369710e-02 | True |
| 1652 | 809808892968534016 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1653 | 809920764300447744 | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | Norwich_terrier | 0.397163 | True | toy_poodle | 2.745400e-01 | True | miniature_poodle | 1.346670e-01 | True |
| 1654 | 810254108431155201 | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | Staffordshire_bullterrier | 0.292556 | True | American_Staffordshire_terrier | 2.612330e-01 | True | Border_terrier | 6.237540e-02 | True |
| 1655 | 810284430598270976 | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | malamute | 0.620768 | True | Eskimo_dog | 1.583950e-01 | True | Tibetan_mastiff | 2.896170e-02 | True |
| 1656 | 810657578271330305 | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | malamute | 0.753521 | True | Siberian_husky | 1.661510e-01 | True | Eskimo_dog | 6.981080e-02 | True |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | flat-coated_retriever | 0.820804 | True | Labrador_retriever | 8.231820e-02 | True | curly-coated_retriever | 6.746050e-02 | True |
| 1658 | 810984652412424192 | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | golden_retriever | 0.871342 | True | Tibetan_mastiff | 3.670770e-02 | True | Labrador_retriever | 2.582320e-02 | True |
| 1659 | 811386762094317568 | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | Pembroke | 0.804177 | True | Cardigan | 1.898900e-01 | True | beagle | 1.964750e-03 | True |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | beagle | 0.396280 | True | Pembroke | 4.956190e-02 | True | wire-haired_fox_terrier | 4.634920e-02 | True |
| 1661 | 811744202451197953 | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | Pekinese | 0.386082 | True | Labrador_retriever | 2.028620e-01 | True | golden_retriever | 1.704870e-01 | True |
| 1662 | 811985624773361665 | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | Staffordshire_bullterrier | 0.610573 | True | French_bulldog | 1.599350e-01 | True | doormat | 5.867210e-02 | False |
| 1663 | 812372279581671427 | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | golden_retriever | 0.784873 | True | cocker_spaniel | 8.778810e-02 | True | Labrador_retriever | 8.327470e-02 | True |
| 1664 | 812466873996607488 | https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg | 1 | bath_towel | 0.099804 | False | pillow | 9.231810e-02 | False | Great_Dane | 7.820550e-02 | True |
| 1665 | 812503143955202048 | https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg | 2 | loupe | 0.546856 | False | web_site | 3.452980e-01 | False | bubble | 1.052790e-02 | False |
| 1666 | 812709060537683968 | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | Irish_setter | 0.326873 | True | golden_retriever | 1.826100e-01 | True | Leonberg | 1.569120e-01 | True |
| 1667 | 812781120811126785 | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | bull_mastiff | 0.989316 | True | boxer | 7.042960e-03 | True | French_bulldog | 1.739610e-03 | True |
| 1668 | 813051746834595840 | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | golden_retriever | 0.914804 | True | Labrador_retriever | 8.355000e-02 | True | kuvasz | 4.532240e-04 | True |
| 1669 | 813066809284972545 | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | toy_terrier | 0.776400 | True | Pembroke | 1.150340e-01 | True | basenji | 4.887300e-02 | True |
| 1670 | 813081950185472002 | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | Doberman | 0.909951 | True | kelpie | 4.264940e-02 | True | miniature_pinscher | 2.300410e-02 | True |
| 1671 | 813096984823349248 | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | Great_Dane | 0.128056 | True | Boston_bull | 1.170030e-01 | True | kelpie | 8.696430e-02 | True |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | dingo | 0.287369 | False | Pembroke | 1.406820e-01 | True | basenji | 9.081890e-02 | True |
| 1673 | 813127251579564032 | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | Norwegian_elkhound | 0.432416 | True | whippet | 3.742230e-01 | True | Siberian_husky | 3.246260e-02 | True |
| 1674 | 813142292504645637 | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | beagle | 0.848735 | True | Ibizan_hound | 4.460250e-02 | True | Italian_greyhound | 1.861080e-02 | True |
| 1675 | 813157409116065792 | https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg | 2 | Siamese_cat | 0.843911 | False | Pembroke | 7.056710e-02 | True | Cardigan | 4.191600e-02 | True |
| 1676 | 813172488309972993 | https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg | 1 | doormat | 0.954844 | False | golden_retriever | 2.619310e-02 | True | cocker_spaniel | 4.385980e-03 | True |
| 1677 | 813187593374461952 | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | golden_retriever | 0.888181 | True | Labrador_retriever | 4.231190e-02 | True | Saluki | 9.701730e-03 | True |
| 1678 | 813202720496779264 | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | cocker_spaniel | 0.701852 | True | golden_retriever | 1.203450e-01 | True | Labrador_retriever | 3.632020e-02 | True |
| 1679 | 813217897535406080 | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | Samoyed | 0.905972 | True | Pomeranian | 4.803830e-02 | True | West_Highland_white_terrier | 3.566710e-02 | True |
| 1680 | 813800681631023104 | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | malamute | 0.501159 | True | Siberian_husky | 2.287920e-01 | True | Eskimo_dog | 2.003880e-01 | True |
| 1681 | 813812741911748608 | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | French_bulldog | 0.709146 | True | Boston_bull | 2.476210e-01 | True | boxer | 1.885510e-02 | True |
| 1682 | 813910438903693312 | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | Siberian_husky | 0.699355 | True | Eskimo_dog | 2.564330e-01 | True | Norwegian_elkhound | 1.318880e-02 | True |
| 1683 | 813944609378369540 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1684 | 814153002265309185 | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | golden_retriever | 0.490068 | True | Labrador_retriever | 2.919560e-01 | True | chow | 7.247470e-02 | True |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | miniature_poodle | 0.626913 | True | toy_poodle | 2.655820e-01 | True | soft-coated_wheaten_terrier | 4.161420e-02 | True |
| 1686 | 814638523311648768 | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | golden_retriever | 0.650814 | True | kuvasz | 5.328100e-02 | True | cocker_spaniel | 3.543960e-02 | True |
| 1687 | 814986499976527872 | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | dalmatian | 0.999828 | True | boxer | 6.780610e-05 | True | American_Staffordshire_terrier | 3.424360e-05 | True |
| 1688 | 815390420867969024 | https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg | 1 | restaurant | 0.279846 | False | toyshop | 9.142940e-02 | False | paper_towel | 4.614740e-02 | False |
| 1689 | 815639385530101762 | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | German_shepherd | 0.817953 | True | Norwegian_elkhound | 1.400070e-01 | True | malinois | 2.482090e-02 | True |
| 1690 | 815736392542261248 | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | Border_collie | 0.548907 | True | Cardigan | 1.785230e-01 | True | collie | 1.463510e-01 | True |
| 1691 | 815966073409433600 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1692 | 815990720817401858 | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | Chihuahua | 0.428756 | True | miniature_pinscher | 1.039120e-01 | True | Staffordshire_bullterrier | 8.895870e-02 | True |
| 1693 | 816014286006976512 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1694 | 816091915477250048 | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | Pomeranian | 0.967345 | True | Samoyed | 7.397480e-03 | True | papillon | 6.016500e-03 | True |
| 1695 | 816336735214911488 | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | Labrador_retriever | 0.919330 | True | kuvasz | 4.947950e-02 | True | golden_retriever | 1.193420e-02 | True |
| 1696 | 816450570814898180 | https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg | 1 | web_site | 0.352857 | False | envelope | 6.010720e-02 | False | nail | 3.129090e-02 | False |
| 1697 | 816697700272001025 | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | Chihuahua | 0.756992 | True | Pomeranian | 5.284950e-02 | True | Maltese_dog | 4.760780e-02 | True |
| 1698 | 816816676327063552 | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | malamute | 0.668164 | True | Pembroke | 1.050330e-01 | True | Siberian_husky | 7.787500e-02 | True |
| 1699 | 816829038950027264 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1700 | 817056546584727552 | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | kelpie | 0.864415 | True | French_bulldog | 9.745560e-02 | True | German_shepherd | 8.525870e-03 | True |
| 1701 | 817120970343411712 | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | Saluki | 0.568809 | True | Afghan_hound | 2.293520e-01 | True | golden_retriever | 1.571300e-01 | True |
| 1702 | 817171292965273600 | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | golden_retriever | 0.295483 | True | Irish_setter | 1.444310e-01 | True | Chesapeake_Bay_retriever | 7.787900e-02 | True |
| 1703 | 817181837579653120 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | Doberman | 0.806163 | True | black-and-tan_coonhound | 9.738590e-02 | True | miniature_pinscher | 8.599280e-02 | True |
| 1705 | 817423860136083457 | https://pbs.twimg.com/ext_tw_video_thumb/81742... | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1706 | 817536400337801217 | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | pug | 0.971358 | True | French_bulldog | 2.851850e-02 | True | Boston_bull | 8.596980e-05 | True |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/81777... | 1 | curly-coated_retriever | 0.733256 | True | flat-coated_retriever | 2.141450e-01 | True | Irish_water_spaniel | 2.976900e-02 | True |
| 1708 | 817827839487737858 | https://pbs.twimg.com/ext_tw_video_thumb/81782... | 1 | cocker_spaniel | 0.387608 | True | golden_retriever | 2.648440e-01 | True | Pekinese | 1.221230e-01 | True |
| 1709 | 818145370475810820 | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | golden_retriever | 0.621931 | True | Labrador_retriever | 3.649970e-01 | True | redbone | 3.971480e-03 | True |
| 1710 | 818259473185828864 | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | miniature_schnauzer | 0.367368 | True | toy_poodle | 1.124790e-01 | True | standard_schnauzer | 9.543400e-02 | True |
| 1711 | 818536468981415936 | https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg | 1 | swing | 0.999403 | False | Welsh_springer_spaniel | 6.229490e-05 | True | bow | 3.046190e-05 | False |
| 1712 | 818588835076603904 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1713 | 818614493328580609 | https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg | 4 | Chihuahua | 0.450722 | True | Border_terrier | 2.041770e-01 | True | beagle | 9.277400e-02 | True |
| 1714 | 818627210458333184 | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | Labrador_retriever | 0.384188 | True | beagle | 2.559170e-01 | True | grocery_store | 7.979950e-02 | False |
| 1715 | 819004803107983360 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1716 | 819006400881917954 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1717 | 819015331746349057 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1718 | 819015337530290176 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1719 | 819227688460238848 | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | Border_terrier | 0.482452 | True | German_shepherd | 1.810820e-01 | True | Norwegian_elkhound | 6.525660e-02 | True |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | Rottweiler | 0.909106 | True | black-and-tan_coonhound | 4.411980e-02 | True | Doberman | 3.183490e-02 | True |
| 1721 | 819588359383371776 | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | Cardigan | 0.547935 | True | basenji | 1.164420e-01 | True | Shetland_sheepdog | 1.016810e-01 | True |
| 1722 | 819711362133872643 | https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg | 2 | acorn_squash | 0.848704 | False | toilet_seat | 4.434840e-02 | False | toy_poodle | 2.200940e-02 | True |
| 1723 | 819924195358416896 | https://pbs.twimg.com/ext_tw_video_thumb/81992... | 1 | bathtub | 0.100896 | False | shower_curtain | 9.186640e-02 | False | tub | 4.917630e-02 | False |
| 1724 | 819952236453363712 | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | American_Staffordshire_terrier | 0.925505 | True | Staffordshire_bullterrier | 3.622150e-02 | True | Italian_greyhound | 2.041190e-02 | True |
| 1725 | 820078625395449857 | https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg | 3 | school_bus | 0.999833 | False | cab | 1.596210e-04 | False | crane | 1.799800e-06 | False |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | Gordon_setter | 0.940724 | True | black-and-tan_coonhound | 4.204120e-02 | True | Rottweiler | 9.417430e-03 | True |
| 1727 | 820446719150292993 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1728 | 820690176645140481 | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | West_Highland_white_terrier | 0.872064 | True | kuvasz | 5.952590e-02 | True | Samoyed | 3.739960e-02 | True |
| 1729 | 820749716845686786 | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | golden_retriever | 0.838012 | True | Pekinese | 5.673310e-02 | True | Labrador_retriever | 2.394360e-02 | True |
| 1730 | 821044531881721856 | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | Old_English_sheepdog | 0.148020 | True | Airedale | 1.335340e-01 | True | Tibetan_mastiff | 1.209030e-01 | True |
| 1731 | 821107785811234820 | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | Pomeranian | 0.856590 | True | papillon | 3.853650e-02 | True | Yorkshire_terrier | 3.314580e-02 | True |
| 1732 | 821149554670182400 | https://pbs.twimg.com/ext_tw_video_thumb/82114... | 1 | German_shepherd | 0.515933 | True | malinois | 2.036510e-01 | True | Irish_setter | 9.105510e-02 | True |
| 1733 | 821407182352777218 | https://pbs.twimg.com/ext_tw_video_thumb/82140... | 1 | Irish_setter | 0.505496 | True | vizsla | 1.687470e-01 | True | Chesapeake_Bay_retriever | 1.113110e-01 | True |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | Doberman | 0.763539 | True | black-and-tan_coonhound | 1.366020e-01 | True | miniature_pinscher | 8.765390e-02 | True |
| 1735 | 821765923262631936 | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | golden_retriever | 0.980071 | True | Labrador_retriever | 8.757510e-03 | True | Saluki | 1.805950e-03 | True |
| 1736 | 821813639212650496 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1737 | 821886076407029760 | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | golden_retriever | 0.266238 | True | cocker_spaniel | 2.233250e-01 | True | Irish_setter | 1.516310e-01 | True |
| 1738 | 822244816520155136 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1739 | 822462944365645825 | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | Pomeranian | 0.960199 | True | Samoyed | 2.305630e-02 | True | Maltese_dog | 8.944880e-03 | True |
| 1740 | 822489057087389700 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1741 | 822610361945911296 | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | cocker_spaniel | 0.664487 | True | Norfolk_terrier | 7.508900e-02 | True | Norwich_terrier | 5.964390e-02 | True |
| 1742 | 822647212903690241 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1743 | 822859134160621569 | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | malinois | 0.332897 | True | Chihuahua | 1.041160e-01 | True | Staffordshire_bullterrier | 4.774500e-02 | True |
| 1744 | 822872901745569793 | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | Lakeland_terrier | 0.196015 | True | Labrador_retriever | 1.603290e-01 | True | Irish_terrier | 6.912620e-02 | True |
| 1745 | 822975315408461824 | https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg | 1 | bathtub | 0.331098 | False | tub | 2.488600e-01 | False | Pembroke | 2.331620e-01 | True |
| 1746 | 823269594223824897 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1747 | 823322678127919110 | https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg | 2 | cowboy_boot | 0.990253 | False | Chihuahua | 1.836350e-03 | True | papillon | 1.273900e-03 | True |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | dingo | 0.280949 | False | German_shepherd | 1.940440e-01 | True | Pembroke | 1.200510e-01 | True |
| 1749 | 823699002998870016 | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | cairn | 0.203999 | True | snorkel | 1.718930e-01 | False | Norfolk_terrier | 1.075430e-01 | True |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | schipperke | 0.234076 | True | curly-coated_retriever | 1.930930e-01 | True | Labrador_retriever | 9.519660e-02 | True |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | teddy | 0.588230 | False | jigsaw_puzzle | 2.890960e-02 | False | doormat | 2.225070e-02 | False |
| 1752 | 824325613288833024 | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | Pembroke | 0.990793 | True | Cardigan | 8.919390e-03 | True | basenji | 2.622640e-04 | True |
| 1753 | 824663926340194305 | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | English_setter | 0.526488 | True | golden_retriever | 4.028150e-01 | True | Irish_setter | 3.441780e-02 | True |
| 1754 | 824775126675836928 | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | Border_terrier | 0.610499 | True | malinois | 9.029120e-02 | True | Airedale | 6.862470e-02 | True |
| 1755 | 824796380199809024 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1756 | 825026590719483904 | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | Eskimo_dog | 0.524454 | True | Siberian_husky | 4.676780e-01 | True | malamute | 4.975840e-03 | True |
| 1757 | 825147591692263424 | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | Pekinese | 0.354823 | True | Pomeranian | 2.453900e-01 | True | toy_poodle | 1.365450e-01 | True |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | Rottweiler | 0.681495 | True | Tibetan_mastiff | 1.479400e-01 | True | black-and-tan_coonhound | 2.452520e-02 | True |
| 1759 | 825829644528148480 | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | Great_Pyrenees | 0.853407 | True | golden_retriever | 5.353130e-02 | True | English_setter | 4.582990e-02 | True |
| 1760 | 825876512159186944 | https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg | 1 | shopping_cart | 0.995941 | False | shopping_basket | 4.056970e-03 | False | mousetrap | 8.832830e-07 | False |
| 1761 | 826115272272650244 | https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg | 1 | tennis_ball | 0.997071 | False | golden_retriever | 2.330850e-03 | True | kuvasz | 2.834720e-04 | True |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | Labrador_retriever | 0.782058 | True | golden_retriever | 1.565810e-01 | True | soft-coated_wheaten_terrier | 7.275120e-03 | True |
| 1763 | 826240494070030336 | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | French_bulldog | 0.903048 | True | pug | 9.624210e-02 | True | Boston_bull | 2.343640e-04 | True |
| 1764 | 826476773533745153 | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | German_shepherd | 0.741860 | True | Tibetan_mastiff | 1.228120e-01 | True | kelpie | 1.004600e-01 | True |
| 1765 | 826598365270007810 | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | French_bulldog | 0.628119 | True | Siamese_cat | 1.173970e-01 | False | cougar | 8.276490e-02 | False |
| 1766 | 826848821049180160 | https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg | 4 | Great_Pyrenees | 0.858764 | True | golden_retriever | 2.352570e-02 | True | Pekinese | 1.710390e-02 | True |
| 1767 | 826958653328592898 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1768 | 827199976799354881 | https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg | 4 | Great_Dane | 0.869681 | True | American_Staffordshire_terrier | 2.665820e-02 | True | boxer | 1.986610e-02 | True |
| 1769 | 827324948884643840 | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | golden_retriever | 0.352486 | True | toy_poodle | 1.788840e-01 | True | Labrador_retriever | 8.416440e-02 | True |
| 1770 | 827600520311402496 | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | Pembroke | 0.325638 | True | golden_retriever | 3.172350e-01 | True | Labrador_retriever | 1.160870e-01 | True |
| 1771 | 827653905312006145 | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | collie | 0.285555 | True | Border_collie | 2.173060e-01 | True | Saint_Bernard | 1.432450e-01 | True |
| 1772 | 827933404142436356 | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | German_shepherd | 0.806115 | True | Tibetan_mastiff | 1.048310e-01 | True | kelpie | 3.814820e-02 | True |
| 1773 | 828011680017821696 | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | American_Staffordshire_terrier | 0.936662 | True | Staffordshire_bullterrier | 3.299910e-02 | True | bull_mastiff | 1.718340e-02 | True |
| 1774 | 828046555563323392 | https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg | 3 | patio | 0.272972 | False | window_screen | 1.312950e-01 | False | boathouse | 4.639250e-02 | False |
| 1775 | 828372645993398273 | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | malamute | 0.663047 | True | Eskimo_dog | 2.077790e-01 | True | Tibetan_mastiff | 4.094880e-02 | True |
| 1776 | 828376505180889089 | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | American_Staffordshire_terrier | 0.523086 | True | Staffordshire_bullterrier | 1.861680e-01 | True | Chihuahua | 4.208940e-02 | True |
| 1777 | 828381636999917570 | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | Bedlington_terrier | 0.392535 | True | Labrador_retriever | 8.902170e-02 | True | clumber | 8.179980e-02 | True |
| 1778 | 828408677031882754 | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | Weimaraner | 0.133033 | True | Chesapeake_Bay_retriever | 9.222700e-02 | True | American_Staffordshire_terrier | 6.509450e-02 | True |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | teddy | 0.908457 | False | toy_poodle | 1.803980e-02 | True | standard_poodle | 1.266710e-02 | True |
| 1780 | 828650029636317184 | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | golden_retriever | 0.649209 | True | Chesapeake_Bay_retriever | 1.985600e-01 | True | vizsla | 5.619990e-02 | True |
| 1781 | 828708714936930305 | https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg | 1 | hippopotamus | 0.942911 | False | Mexican_hairless | 8.388370e-03 | True | ice_lolly | 6.206470e-03 | False |
| 1782 | 828770345708580865 | https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg | 1 | seat_belt | 0.765979 | False | Chesapeake_Bay_retriever | 3.389860e-02 | True | polecat | 2.725160e-02 | False |
| 1783 | 829011960981237760 | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | boxer | 0.312221 | True | dalmatian | 2.440400e-01 | True | conch | 1.302730e-01 | False |
| 1784 | 829141528400556032 | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | golden_retriever | 0.573140 | True | cocker_spaniel | 1.111590e-01 | True | gibbon | 9.412690e-02 | False |
| 1785 | 829374341691346946 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1786 | 829449946868879360 | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | Labrador_retriever | 0.315163 | True | golden_retriever | 1.532100e-01 | True | Pekinese | 1.327910e-01 | True |
| 1787 | 829501995190984704 | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | French_bulldog | 0.950851 | True | Pekinese | 1.519960e-02 | True | pug | 1.109360e-02 | True |
| 1788 | 829861396166877184 | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | Border_terrier | 0.394486 | True | Staffordshire_bullterrier | 3.765740e-01 | True | American_Staffordshire_terrier | 3.129160e-02 | True |
| 1789 | 829878982036299777 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1790 | 830097400375152640 | https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg | 4 | toy_poodle | 0.442713 | True | Pomeranian | 1.420730e-01 | True | Pekinese | 1.257450e-01 | True |
| 1791 | 830583320585068544 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 1792 | 830956169170665475 | https://pbs.twimg.com/ext_tw_video_thumb/83095... | 1 | kuvasz | 0.451516 | True | golden_retriever | 3.171960e-01 | True | English_setter | 1.327590e-01 | True |
| 1793 | 831262627380748289 | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | cocker_spaniel | 0.263323 | True | Brittany_spaniel | 2.005500e-01 | True | doormat | 1.934140e-01 | False |
| 1794 | 831309418084069378 | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | Doberman | 0.369389 | True | kelpie | 1.324490e-01 | True | Labrador_retriever | 7.472730e-02 | True |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | briard | 0.982755 | True | soft-coated_wheaten_terrier | 9.084350e-03 | True | Bouvier_des_Flandres | 4.692800e-03 | True |
| 1796 | 831322785565769729 | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | Old_English_sheepdog | 0.999715 | True | Tibetan_terrier | 4.629670e-05 | True | guinea_pig | 4.118430e-05 | False |
| 1797 | 831552930092285952 | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | Chihuahua | 0.257415 | True | Pembroke | 1.614420e-01 | True | French_bulldog | 9.214290e-02 | True |
| 1798 | 831650051525054464 | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | Eskimo_dog | 0.530416 | True | Siberian_husky | 1.803350e-01 | True | Norwegian_elkhound | 1.043140e-01 | True |
| 1799 | 831670449226514432 | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | Pembroke | 0.624802 | True | Cardigan | 3.628610e-01 | True | Appenzeller | 3.926210e-03 | True |
| 1800 | 831911600680497154 | https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg | 4 | bloodhound | 0.777562 | True | Great_Dane | 4.741760e-02 | True | Leonberg | 1.794310e-02 | True |
| 1801 | 831939777352105988 | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | Pomeranian | 0.153862 | True | marmot | 9.123390e-02 | False | grey_fox | 9.064410e-02 | False |
| 1802 | 832032802820481025 | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | whippet | 0.601712 | True | Ibizan_hound | 1.526620e-01 | True | Italian_greyhound | 1.350550e-01 | True |
| 1803 | 832040443403784192 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1804 | 832215726631055365 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1805 | 832273440279240704 | https://pbs.twimg.com/ext_tw_video_thumb/83227... | 1 | Pembroke | 0.134081 | True | ice_bear | 5.192780e-02 | False | pug | 4.431090e-02 | True |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | kelpie | 0.504690 | True | German_short-haired_pointer | 1.052080e-01 | True | Staffordshire_bullterrier | 5.433850e-02 | True |
| 1807 | 832397543355072512 | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | Pekinese | 0.988916 | True | Brabancon_griffon | 1.676800e-03 | True | Siamese_cat | 1.125890e-03 | False |
| 1808 | 832636094638288896 | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | Eskimo_dog | 0.525032 | True | Siberian_husky | 2.522380e-01 | True | malamute | 2.168390e-01 | True |
| 1809 | 832757312314028032 | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | Cardigan | 0.160888 | True | Staffordshire_bullterrier | 1.594410e-01 | True | Boston_bull | 1.543680e-01 | True |
| 1810 | 832769181346996225 | https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg | 1 | jersey | 0.895698 | False | sweatshirt | 8.908540e-02 | False | poncho | 2.975220e-03 | False |
| 1811 | 832998151111966721 | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | boxer | 0.539036 | True | French_bulldog | 3.176170e-01 | True | bull_mastiff | 9.392850e-02 | True |
| 1812 | 833124694597443584 | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | Cardigan | 0.710523 | True | kelpie | 1.061020e-01 | True | shopping_cart | 5.547550e-02 | False |
| 1813 | 833479644947025920 | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | golden_retriever | 0.727039 | True | cocker_spaniel | 7.113980e-02 | True | Tibetan_mastiff | 4.869420e-02 | True |
| 1814 | 833722901757046785 | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | West_Highland_white_terrier | 0.918144 | True | Maltese_dog | 2.572070e-02 | True | Lakeland_terrier | 2.021110e-02 | True |
| 1815 | 833826103416520705 | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | Chihuahua | 0.438054 | True | kelpie | 1.497060e-01 | True | Pembroke | 9.648050e-02 | True |
| 1816 | 833863086058651648 | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | kuvasz | 0.494969 | True | Great_Pyrenees | 3.126320e-01 | True | golden_retriever | 1.417360e-01 | True |
| 1817 | 834086379323871233 | https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg | 1 | bath_towel | 0.736759 | False | sleeping_bag | 6.295910e-02 | False | Labrador_retriever | 4.526270e-02 | True |
| 1818 | 834167344700198914 | https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg | 1 | ox | 0.991682 | False | bison | 5.334520e-03 | False | water_buffalo | 1.130250e-03 | False |
| 1819 | 834209720923721728 | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | golden_retriever | 0.754799 | True | Pekinese | 1.978610e-01 | True | Labrador_retriever | 8.654040e-03 | True |
| 1820 | 834458053273591808 | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | Rhodesian_ridgeback | 0.468619 | True | whippet | 1.775310e-01 | True | redbone | 1.065520e-01 | True |
| 1821 | 834574053763584002 | https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg | 1 | toilet_tissue | 0.262936 | False | golden_retriever | 2.265640e-01 | True | bathtub | 7.887900e-02 | False |
| 1822 | 834786237630337024 | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | Border_terrier | 0.156276 | True | Norwegian_elkhound | 1.259120e-01 | True | Boston_bull | 9.662390e-02 | True |
| 1823 | 834931633769889797 | https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg | 1 | ice_bear | 0.330573 | False | soft-coated_wheaten_terrier | 1.964760e-01 | True | Irish_terrier | 7.309650e-02 | True |
| 1824 | 835152434251116546 | https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg | 3 | swing | 0.967066 | False | American_Staffordshire_terrier | 1.273090e-02 | True | Staffordshire_bullterrier | 7.039220e-03 | True |
| 1825 | 835172783151792128 | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | Border_collie | 0.663138 | True | collie | 1.524940e-01 | True | Cardigan | 3.547060e-02 | True |
| 1826 | 835264098648616962 | https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg | 2 | hyena | 0.736871 | False | Chesapeake_Bay_retriever | 8.750330e-02 | True | meerkat | 4.205780e-02 | False |
| 1827 | 835297930240217089 | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | Rottweiler | 0.341276 | True | Border_terrier | 3.362200e-01 | True | Gordon_setter | 4.544830e-02 | True |
| 1828 | 835574547218894849 | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | Staffordshire_bullterrier | 0.610655 | True | muzzle | 1.321380e-01 | False | American_Staffordshire_terrier | 1.095440e-01 | True |
| 1829 | 836001077879255040 | https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg | 4 | Samoyed | 0.963558 | True | white_wolf | 1.984760e-02 | False | malamute | 5.904340e-03 | True |
| 1830 | 836260088725786625 | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | borzoi | 0.564688 | True | ice_bear | 7.826750e-02 | False | Pembroke | 5.791620e-02 | True |
| 1831 | 836380477523124226 | https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg | 1 | wooden_spoon | 0.082489 | False | sliding_door | 6.101650e-02 | False | grand_piano | 5.508610e-02 | False |
| 1832 | 836677758902222849 | https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg | 2 | leopard | 0.797410 | False | jaguar | 9.548660e-02 | False | snow_leopard | 7.969410e-02 | False |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | mortarboard | 0.936882 | False | academic_gown | 2.081540e-02 | False | schipperke | 1.156350e-02 | True |
| 1834 | 836989968035819520 | https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg | 1 | shopping_cart | 0.572422 | False | shopping_basket | 4.140020e-01 | False | toy_poodle | 5.887300e-03 | True |
| 1835 | 837012587749474308 | https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg | 1 | toilet_tissue | 0.186387 | False | cowboy_hat | 1.585550e-01 | False | sombrero | 1.494700e-01 | False |
| 1836 | 837110210464448512 | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | Siberian_husky | 0.767696 | True | Eskimo_dog | 2.170790e-01 | True | malamute | 1.165680e-02 | True |
| 1837 | 837366284874571778 | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | American_Staffordshire_terrier | 0.660085 | True | Staffordshire_bullterrier | 3.349470e-01 | True | dalmatian | 2.697160e-03 | True |
| 1838 | 837471256429613056 | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | Norwegian_elkhound | 0.976255 | True | keeshond | 1.399020e-02 | True | seat_belt | 2.110540e-03 | False |
| 1839 | 837482249356513284 | https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg | 2 | birdhouse | 0.541196 | False | can_opener | 1.210940e-01 | False | carton | 5.613670e-02 | False |
| 1840 | 837820167694528512 | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | golden_retriever | 0.887625 | True | Labrador_retriever | 6.871750e-02 | True | kuvasz | 3.038680e-02 | True |
| 1841 | 838083903487373313 | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | chow | 0.800975 | True | seat_belt | 1.641330e-01 | False | Pomeranian | 1.798100e-02 | True |
| 1842 | 838476387338051585 | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | Great_Pyrenees | 0.997692 | True | kuvasz | 1.000640e-03 | True | Newfoundland | 4.045560e-04 | True |
| 1843 | 838561493054533637 | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | kelpie | 0.216562 | True | doormat | 1.399940e-01 | False | dalmatian | 1.328200e-01 | True |
| 1844 | 838916489579200512 | https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg | 2 | web_site | 0.993651 | False | monitor | 1.405900e-03 | False | envelope | 1.093090e-03 | False |
| 1845 | 838921590096166913 | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | Border_terrier | 0.664538 | True | Brabancon_griffon | 1.704510e-01 | True | Yorkshire_terrier | 8.782360e-02 | True |
| 1846 | 839239871831150596 | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | Leonberg | 0.927021 | True | Newfoundland | 5.000910e-02 | True | Saint_Bernard | 1.072780e-02 | True |
| 1847 | 839290600511926273 | https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg | 1 | web_site | 0.670892 | False | monitor | 1.015650e-01 | False | screen | 7.530610e-02 | False |
| 1848 | 839549326359670784 | https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg | 1 | swing | 0.393527 | False | Norwich_terrier | 5.248000e-02 | True | Pembroke | 4.990060e-02 | True |
| 1849 | 839990271299457024 | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | Staffordshire_bullterrier | 0.604938 | True | American_Staffordshire_terrier | 3.115400e-01 | True | Boston_bull | 3.715910e-02 | True |
| 1850 | 840268004936019968 | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | Chesapeake_Bay_retriever | 0.863987 | True | Labrador_retriever | 5.263230e-02 | True | kelpie | 3.257360e-02 | True |
| 1851 | 840370681858686976 | https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg | 1 | teapot | 0.981819 | False | cup | 1.402580e-02 | False | coffeepot | 2.420540e-03 | False |
| 1852 | 840632337062862849 | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | golden_retriever | 0.711148 | True | cocker_spaniel | 1.579290e-01 | True | Labrador_retriever | 5.958190e-02 | True |
| 1853 | 840696689258311684 | https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg | 1 | web_site | 0.841768 | False | rule | 7.087310e-03 | False | envelope | 6.820300e-03 | False |
| 1854 | 841077006473256960 | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | Brittany_spaniel | 0.962985 | True | Blenheim_spaniel | 1.482000e-02 | True | clumber | 9.557110e-03 | True |
| 1855 | 841314665196081154 | https://pbs.twimg.com/ext_tw_video_thumb/84131... | 1 | Afghan_hound | 0.903712 | True | Saluki | 3.521500e-02 | True | bloodhound | 2.656550e-02 | True |
| 1856 | 841439858740625411 | https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg | 3 | military_uniform | 0.853684 | False | Labrador_retriever | 4.819990e-02 | True | groenendael | 1.539440e-02 | True |
| 1857 | 841680585030541313 | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | Chihuahua | 0.547401 | True | bow_tie | 1.983610e-01 | False | Pembroke | 5.849250e-02 | True |
| 1858 | 841833993020538882 | https://pbs.twimg.com/ext_tw_video_thumb/81742... | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1859 | 842115215311396866 | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | chow | 0.293493 | True | Newfoundland | 1.813360e-01 | True | schipperke | 1.251520e-01 | True |
| 1860 | 842163532590374912 | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | French_bulldog | 0.891227 | True | soccer_ball | 2.281100e-02 | False | bull_mastiff | 1.285200e-02 | True |
| 1861 | 842535590457499648 | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | Pembroke | 0.685084 | True | Cardigan | 3.146080e-01 | True | basenji | 1.598240e-04 | True |
| 1862 | 842765311967449089 | https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg | 1 | tub | 0.665238 | False | bucket | 1.051660e-01 | False | Labrador_retriever | 2.933990e-02 | True |
| 1863 | 842846295480000512 | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | Labrador_retriever | 0.461076 | True | golden_retriever | 1.549460e-01 | True | Chihuahua | 1.102490e-01 | True |
| 1864 | 842892208864923648 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1865 | 843235543001513987 | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | Pembroke | 0.958452 | True | Cardigan | 2.376990e-02 | True | Chihuahua | 5.269360e-03 | True |
| 1866 | 843604394117681152 | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | Labrador_retriever | 0.430583 | True | golden_retriever | 2.635810e-01 | True | Great_Pyrenees | 1.793850e-01 | True |
| 1867 | 843856843873095681 | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | Labrador_retriever | 0.922540 | True | golden_retriever | 7.435780e-02 | True | Great_Pyrenees | 2.324950e-03 | True |
| 1868 | 844223788422217728 | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | Labrador_retriever | 0.719510 | True | Chesapeake_Bay_retriever | 1.220190e-01 | True | Newfoundland | 3.882760e-02 | True |
| 1869 | 844580511645339650 | https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg | 1 | washer | 0.903064 | False | dishwasher | 3.248900e-02 | False | printer | 1.645620e-02 | False |
| 1870 | 844704788403113984 | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | Labrador_retriever | 0.980213 | True | golden_retriever | 7.011670e-03 | True | beagle | 3.146970e-03 | True |
| 1871 | 844973813909606400 | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | Labrador_retriever | 0.742421 | True | golden_retriever | 1.952180e-01 | True | Chihuahua | 1.732010e-02 | True |
| 1872 | 844979544864018432 | https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg | 3 | tennis_ball | 0.999281 | False | racket | 3.700800e-04 | False | Shetland_sheepdog | 1.320680e-04 | True |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | Irish_water_spaniel | 0.567475 | True | Labrador_retriever | 1.694960e-01 | True | curly-coated_retriever | 1.015180e-01 | True |
| 1874 | 845397057150107648 | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | Dandie_Dinmont | 0.394404 | True | Maltese_dog | 1.865370e-01 | True | West_Highland_white_terrier | 1.819850e-01 | True |
| 1875 | 845677943972139009 | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | chow | 0.808681 | True | groenendael | 1.231410e-01 | True | Newfoundland | 2.214320e-02 | True |
| 1876 | 845812042753855489 | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | Samoyed | 0.979803 | True | chow | 1.592260e-02 | True | white_wolf | 1.302790e-03 | False |
| 1877 | 846042936437604353 | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | golden_retriever | 0.961110 | True | Labrador_retriever | 1.669520e-02 | True | Tibetan_mastiff | 9.081530e-03 | True |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | giant_schnauzer | 0.346468 | True | flat-coated_retriever | 2.184510e-01 | True | Labrador_retriever | 1.080200e-01 | True |
| 1879 | 846514051647705089 | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | golden_retriever | 0.650003 | True | Leonberg | 6.519920e-02 | True | Norfolk_terrier | 5.295530e-02 | True |
| 1880 | 846874817362120707 | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | Shetland_sheepdog | 0.450539 | True | papillon | 1.879280e-01 | True | collie | 1.400680e-01 | True |
| 1881 | 847116187444137987 | https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg | 1 | white_wolf | 0.128935 | False | American_Staffordshire_terrier | 1.134340e-01 | True | dingo | 8.123140e-02 | False |
| 1882 | 847157206088847362 | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | Staffordshire_bullterrier | 0.219609 | True | American_Staffordshire_terrier | 1.786710e-01 | True | pug | 1.232710e-01 | True |
| 1883 | 847251039262605312 | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | Airedale | 0.495380 | True | Irish_terrier | 3.164560e-01 | True | Lakeland_terrier | 1.585330e-01 | True |
| 1884 | 847606175596138505 | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | Cardigan | 0.413688 | True | Boston_bull | 3.818360e-01 | True | doormat | 6.586780e-02 | False |
| 1885 | 847842811428974592 | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | Bernese_mountain_dog | 0.951337 | True | Greater_Swiss_Mountain_dog | 1.684910e-02 | True | Appenzeller | 1.084920e-02 | True |
| 1886 | 847962785489326080 | https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg | 1 | sea_lion | 0.882654 | False | mink | 6.688020e-02 | False | otter | 2.567870e-02 | False |
| 1887 | 847971574464610304 | https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg | 1 | coffee_mug | 0.633652 | False | cup | 2.733920e-01 | False | toilet_tissue | 6.665580e-02 | False |
| 1888 | 848212111729840128 | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | Bedlington_terrier | 0.333486 | True | Ibizan_hound | 2.457970e-01 | True | wallaby | 1.316470e-01 | False |
| 1889 | 848324959059550208 | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | malamute | 0.544576 | True | Siberian_husky | 2.902680e-01 | True | Eskimo_dog | 1.544210e-01 | True |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | flat-coated_retriever | 0.823648 | True | Newfoundland | 1.005710e-01 | True | groenendael | 3.830970e-02 | True |
| 1891 | 849051919805034497 | https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg | 1 | fountain | 0.997509 | False | American_black_bear | 1.413120e-03 | False | sundial | 6.811150e-04 | False |
| 1892 | 849336543269576704 | https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg | 1 | patio | 0.521788 | False | prison | 1.495440e-01 | False | restaurant | 2.715260e-02 | False |
| 1893 | 849412302885593088 | https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg | 4 | schipperke | 0.907559 | True | crossword_puzzle | 1.793390e-02 | False | Chihuahua | 1.619070e-02 | True |
| 1894 | 849776966551130114 | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | Chihuahua | 0.292092 | True | toy_terrier | 1.368520e-01 | True | bonnet | 1.031110e-01 | False |
| 1895 | 850019790995546112 | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | Shetland_sheepdog | 0.759907 | True | collie | 1.074050e-01 | True | Pembroke | 5.233530e-02 | True |
| 1896 | 850145622816686080 | https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg | 2 | tennis_ball | 0.714798 | False | kelpie | 1.053900e-01 | True | malinois | 5.855270e-02 | True |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/85038... | 1 | Yorkshire_terrier | 0.249012 | True | Maltese_dog | 1.663640e-01 | True | Shih-Tzu | 1.422540e-01 | True |
| 1898 | 850753642995093505 | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | pug | 0.996952 | True | bull_mastiff | 9.959010e-04 | True | French_bulldog | 8.833800e-04 | True |
| 1899 | 851224888060895234 | https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg | 3 | car_mirror | 0.971512 | False | seat_belt | 7.063460e-03 | False | standard_poodle | 5.682650e-03 | True |
| 1900 | 851464819735769094 | https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg | 2 | web_site | 0.919649 | False | menu | 2.630610e-02 | False | crossword_puzzle | 3.481510e-03 | False |
| 1901 | 851591660324737024 | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | Cardigan | 0.394507 | True | Chihuahua | 7.725400e-02 | True | French_bulldog | 7.655880e-02 | True |
| 1902 | 851861385021730816 | https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg | 1 | pencil_box | 0.662183 | False | purse | 6.650550e-02 | False | pillow | 4.472530e-02 | False |
| 1903 | 851953902622658560 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1904 | 852189679701164033 | https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg | 1 | barrow | 0.423150 | False | Bernese_mountain_dog | 4.153740e-01 | True | EntleBucher | 6.734540e-02 | True |
| 1905 | 852226086759018497 | https://pbs.twimg.com/ext_tw_video_thumb/85222... | 1 | prison | 0.352793 | False | dishwasher | 1.107230e-01 | False | file | 9.411200e-02 | False |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 2.841790e-02 | False | go-kart | 5.595040e-07 | False |
| 1907 | 852553447878664193 | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | bloodhound | 0.186498 | True | Brabancon_griffon | 1.390280e-01 | True | Rottweiler | 1.259400e-01 | True |
| 1908 | 852672615818899456 | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | golden_retriever | 0.711235 | True | otterhound | 6.823470e-02 | True | Sussex_spaniel | 4.656170e-02 | True |
| 1909 | 852912242202992640 | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | Great_Dane | 0.783765 | True | Rhodesian_ridgeback | 1.141470e-01 | True | English_foxhound | 4.643950e-02 | True |
| 1910 | 853299958564483072 | https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg | 1 | grille | 0.652280 | False | beach_wagon | 1.128460e-01 | False | convertible | 8.625230e-02 | False |
| 1911 | 853639147608842240 | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | German_shepherd | 0.509879 | True | malinois | 2.373110e-01 | True | kelpie | 4.691620e-02 | True |
| 1912 | 853760880890318849 | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | miniature_pinscher | 0.292519 | True | Chihuahua | 1.209460e-01 | True | Rottweiler | 1.194900e-01 | True |
| 1913 | 854010172552949760 | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | English_springer | 0.354733 | True | collie | 1.775380e-01 | True | Border_collie | 1.317060e-01 | True |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | black-and-tan_coonhound | 0.854861 | True | Doberman | 5.079180e-02 | True | bluetick | 2.176170e-02 | True |
| 1915 | 854365224396361728 | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | Pembroke | 0.907080 | True | Cardigan | 8.627200e-02 | True | Chihuahua | 1.413230e-03 | True |
| 1916 | 854482394044301312 | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | Chihuahua | 0.260242 | True | toy_poodle | 1.891580e-01 | True | Labrador_retriever | 1.441950e-01 | True |
| 1917 | 854732716440526848 | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | Pembroke | 0.695548 | True | Cardigan | 5.890170e-02 | True | chow | 2.841060e-02 | True |
| 1918 | 855459453768019968 | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | Blenheim_spaniel | 0.389513 | True | Pekinese | 1.882200e-01 | True | Japanese_spaniel | 8.262820e-02 | True |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | flat-coated_retriever | 0.321676 | True | Labrador_retriever | 1.151380e-01 | True | groenendael | 9.609970e-02 | True |
| 1920 | 856282028240666624 | https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg | 4 | Chihuahua | 0.876543 | True | Italian_greyhound | 3.296180e-02 | True | Cardigan | 2.077590e-02 | True |
| 1921 | 856526610513747968 | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | Old_English_sheepdog | 0.798481 | True | Tibetan_terrier | 6.060240e-02 | True | standard_poodle | 4.072190e-02 | True |
| 1922 | 856543823941562368 | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | Boston_bull | 0.306910 | True | Siamese_cat | 1.912180e-01 | False | Chihuahua | 1.892880e-01 | True |
| 1923 | 857029823797047296 | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | golden_retriever | 0.968623 | True | Labrador_retriever | 1.032520e-02 | True | Saluki | 4.148420e-03 | True |
| 1924 | 857263160327368704 | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | Samoyed | 0.998021 | True | Pomeranian | 9.216360e-04 | True | keeshond | 3.112610e-04 | True |
| 1925 | 857393404942143489 | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | malamute | 0.841597 | True | Siberian_husky | 7.364350e-02 | True | Eskimo_dog | 7.212860e-02 | True |
| 1926 | 857746408056729600 | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | Labrador_retriever | 0.919832 | True | beagle | 4.351300e-02 | True | golden_retriever | 2.335880e-02 | True |
| 1927 | 857989990357356544 | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | French_bulldog | 0.432580 | True | English_springer | 3.258980e-01 | True | Lakeland_terrier | 4.261790e-02 | True |
| 1928 | 858107933456039936 | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | golden_retriever | 0.863874 | True | Labrador_retriever | 1.592000e-02 | True | doormat | 1.061530e-02 | False |
| 1929 | 858471635011153920 | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | Pembroke | 0.987407 | True | Cardigan | 8.723030e-03 | True | basenji | 3.423730e-03 | True |
| 1930 | 858843525470990336 | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | golden_retriever | 0.578120 | True | Labrador_retriever | 2.860590e-01 | True | bloodhound | 2.691730e-02 | True |
| 1931 | 859074603037188101 | https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg | 1 | revolver | 0.190292 | False | projectile | 1.490640e-01 | False | fountain | 6.604660e-02 | False |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/85919... | 1 | Angora | 0.224218 | False | malamute | 2.161630e-01 | True | Persian_cat | 1.283830e-01 | False |
| 1933 | 859607811541651456 | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | golden_retriever | 0.895529 | True | Irish_setter | 2.409930e-02 | True | Labrador_retriever | 1.928540e-02 | True |
| 1934 | 859851578198683649 | https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg | 4 | Labrador_retriever | 0.899086 | True | golden_retriever | 4.709080e-02 | True | kuvasz | 2.320630e-02 | True |
| 1935 | 859924526012018688 | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | French_bulldog | 0.254587 | True | Staffordshire_bullterrier | 1.925580e-01 | True | hog | 1.002700e-01 | False |
| 1936 | 860184849394610176 | https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg | 1 | chimpanzee | 0.267612 | False | gorilla | 1.042930e-01 | False | orangutan | 5.990750e-02 | False |
| 1937 | 860276583193509888 | https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg | 1 | lakeside | 0.312299 | False | dock | 1.598420e-01 | False | canoe | 7.079450e-02 | False |
| 1938 | 860524505164394496 | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | Bedlington_terrier | 0.286558 | True | toy_poodle | 2.351930e-01 | True | Lakeland_terrier | 8.795070e-02 | True |
| 1939 | 860563773140209665 | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | Cardigan | 0.583936 | True | Pembroke | 5.597940e-02 | True | beagle | 4.589570e-02 | True |
| 1940 | 860924035999428608 | https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg | 2 | envelope | 0.933016 | False | oscilloscope | 1.259140e-02 | False | paper_towel | 1.117850e-02 | False |
| 1941 | 861005113778896900 | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | German_shepherd | 0.507951 | True | Pembroke | 1.361130e-01 | True | muzzle | 7.576420e-02 | False |
| 1942 | 861288531465048066 | https://pbs.twimg.com/ext_tw_video_thumb/86128... | 1 | syringe | 0.144712 | False | oxygen_mask | 1.066840e-01 | False | Bouvier_des_Flandres | 8.261020e-02 | True |
| 1943 | 861383897657036800 | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | Cardigan | 0.771008 | True | Pembroke | 1.371740e-01 | True | French_bulldog | 6.330860e-02 | True |
| 1944 | 861769973181624320 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1945 | 862096992088072192 | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | chow | 0.677589 | True | Pomeranian | 2.706480e-01 | True | Pekinese | 3.810990e-02 | True |
| 1946 | 862457590147678208 | https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg | 1 | home_theater | 0.496348 | False | studio_couch | 1.672560e-01 | False | barber_chair | 5.262500e-02 | False |
| 1947 | 862722525377298433 | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | basset | 0.393330 | True | beagle | 2.420340e-01 | True | boxer | 7.769250e-02 | True |
| 1948 | 862831371563274240 | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | Australian_terrier | 0.207281 | True | Irish_terrier | 1.562960e-01 | True | German_shepherd | 1.235360e-01 | True |
| 1949 | 863062471531167744 | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | French_bulldog | 0.935804 | True | pug | 5.957620e-02 | True | boxer | 1.412180e-03 | True |
| 1950 | 863079547188785154 | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | Lakeland_terrier | 0.275242 | True | Airedale | 1.905690e-01 | True | teddy | 1.025950e-01 | False |
| 1951 | 863432100342583297 | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | Staffordshire_bullterrier | 0.690517 | True | French_bulldog | 1.033600e-01 | True | beagle | 7.948940e-02 | True |
| 1952 | 863553081350529029 | https://pbs.twimg.com/ext_tw_video_thumb/86355... | 1 | Eskimo_dog | 0.413330 | True | malamute | 3.476460e-01 | True | Siberian_husky | 1.495360e-01 | True |
| 1953 | 863907417377173506 | https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg | 1 | marmot | 0.358828 | False | meerkat | 1.747030e-01 | False | weasel | 1.234850e-01 | False |
| 1954 | 864197398364647424 | https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg | 4 | golden_retriever | 0.945905 | True | Labrador_retriever | 2.126360e-02 | True | Tibetan_mastiff | 2.049280e-02 | True |
| 1955 | 864279568663928832 | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | bull_mastiff | 0.668613 | True | French_bulldog | 1.805620e-01 | True | Staffordshire_bullterrier | 5.223740e-02 | True |
| 1956 | 864873206498414592 | https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg | 2 | pole | 0.478616 | False | lakeside | 1.141820e-01 | False | wreck | 5.592650e-02 | False |
| 1957 | 865006731092295680 | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | Pembroke | 0.989882 | True | Cardigan | 9.906460e-03 | True | basenji | 1.349520e-04 | True |
| 1958 | 865359393868664832 | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | Chesapeake_Bay_retriever | 0.832435 | True | Labrador_retriever | 1.635510e-01 | True | Weimaraner | 2.770250e-03 | True |
| 1959 | 865718153858494464 | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | golden_retriever | 0.673664 | True | kuvasz | 1.575230e-01 | True | Labrador_retriever | 1.260730e-01 | True |
| 1960 | 866334964761202691 | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | Samoyed | 0.984086 | True | Pomeranian | 7.919280e-03 | True | keeshond | 3.328130e-03 | True |
| 1961 | 866450705531457537 | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | French_bulldog | 0.905334 | True | Boston_bull | 7.805970e-02 | True | pug | 1.770920e-03 | True |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | flat-coated_retriever | 0.514730 | True | groenendael | 3.064070e-01 | True | curly-coated_retriever | 6.131410e-02 | True |
| 1963 | 867051520902168576 | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | Samoyed | 0.471403 | True | Pekinese | 3.022190e-01 | True | Pomeranian | 1.566060e-01 | True |
| 1964 | 867072653475098625 | https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg | 1 | Blenheim_spaniel | 0.352946 | True | papillon | 2.117660e-01 | True | Pekinese | 1.129520e-01 | True |
| 1965 | 867421006826221569 | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | Eskimo_dog | 0.616457 | True | Siberian_husky | 3.813300e-01 | True | malamute | 1.670220e-03 | True |
| 1966 | 867774946302451713 | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | Border_collie | 0.661953 | True | Cardigan | 1.757180e-01 | True | collie | 8.714240e-02 | True |
| 1967 | 867900495410671616 | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | Labrador_retriever | 0.522644 | True | kuvasz | 3.324610e-01 | True | dalmatian | 3.200810e-02 | True |
| 1968 | 868552278524837888 | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | whippet | 0.378151 | True | Italian_greyhound | 2.759350e-01 | True | American_Staffordshire_terrier | 9.499060e-02 | True |
| 1969 | 868622495443632128 | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | Labrador_retriever | 0.868107 | True | Great_Pyrenees | 6.097300e-02 | True | Saint_Bernard | 3.348890e-02 | True |
| 1970 | 868880397819494401 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1971 | 869227993411051520 | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | Pembroke | 0.664181 | True | Chihuahua | 1.692340e-01 | True | Cardigan | 1.327000e-01 | True |
| 1972 | 869596645499047938 | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | Chihuahua | 0.955156 | True | toy_terrier | 8.053730e-03 | True | muzzle | 6.295630e-03 | False |
| 1973 | 869702957897576449 | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | Pembroke | 0.993449 | True | Cardigan | 6.325080e-03 | True | Chihuahua | 1.775980e-04 | True |
| 1974 | 869772420881756160 | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | Pembroke | 0.980148 | True | Cardigan | 1.927110e-02 | True | malamute | 1.362600e-04 | True |
| 1975 | 870063196459192321 | https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg | 1 | comic_book | 0.534409 | False | envelope | 2.807220e-01 | False | book_jacket | 4.378550e-02 | False |
| 1976 | 870308999962521604 | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | Greater_Swiss_Mountain_dog | 0.622752 | True | Appenzeller | 1.584630e-01 | True | EntleBucher | 1.481150e-01 | True |
| 1977 | 870374049280663552 | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | golden_retriever | 0.841001 | True | Great_Pyrenees | 9.927840e-02 | True | Labrador_retriever | 3.262130e-02 | True |
| 1978 | 870656317836468226 | https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg | 4 | Pembroke | 0.945495 | True | Cardigan | 4.587550e-02 | True | beagle | 4.329430e-03 | True |
| 1979 | 870804317367881728 | https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg | 1 | home_theater | 0.168290 | False | sandbar | 9.804040e-02 | False | television | 7.972940e-02 | False |
| 1980 | 871032628920680449 | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | kelpie | 0.398053 | True | macaque | 6.895490e-02 | False | dingo | 5.060180e-02 | False |
| 1981 | 871515927908634625 | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | komondor | 0.974781 | True | briard | 2.004130e-02 | True | swab | 3.228240e-03 | False |
| 1982 | 871762521631449091 | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | Labrador_retriever | 0.921393 | True | golden_retriever | 6.460800e-02 | True | bloodhound | 3.383370e-03 | True |
| 1983 | 871879754684805121 | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | Shetland_sheepdog | 0.969171 | True | collie | 1.826070e-02 | True | Pomeranian | 8.515340e-03 | True |
| 1984 | 872122724285648897 | https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg | 1 | basketball | 0.808396 | False | pug | 6.673630e-02 | True | dalmatian | 5.456980e-02 | True |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | Labrador_retriever | 0.972019 | True | flat-coated_retriever | 8.178280e-03 | True | Chesapeake_Bay_retriever | 7.359270e-03 | True |
| 1986 | 872486979161796608 | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | Pembroke | 0.931861 | True | Cardigan | 3.772120e-02 | True | Chihuahua | 1.196670e-02 | True |
| 1987 | 872620804844003328 | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | cocker_spaniel | 0.513191 | True | Sussex_spaniel | 1.590880e-01 | True | standard_poodle | 1.495090e-01 | True |
| 1988 | 872820683541237760 | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | pug | 0.999120 | True | French_bulldog | 5.519200e-04 | True | bull_mastiff | 7.289040e-05 | True |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | Labrador_retriever | 0.476913 | True | Chesapeake_Bay_retriever | 1.741450e-01 | True | German_short-haired_pointer | 9.286140e-02 | True |
| 1990 | 873213775632977920 | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | vizsla | 0.619782 | True | bloodhound | 3.380690e-01 | True | Chesapeake_Bay_retriever | 1.267630e-02 | True |
| 1991 | 873580283840344065 | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | Newfoundland | 0.678537 | True | Tibetan_mastiff | 2.440220e-01 | True | chow | 4.852950e-02 | True |
| 1992 | 873697596434513921 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1993 | 874012996292530176 | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | Cardigan | 0.806674 | True | Pembroke | 1.166220e-01 | True | kelpie | 4.918190e-02 | True |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | flat-coated_retriever | 0.832177 | True | black-and-tan_coonhound | 4.043690e-02 | True | Newfoundland | 2.822830e-02 | True |
| 1995 | 874296783580663808 | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | cocker_spaniel | 0.437216 | True | miniature_poodle | 2.771910e-01 | True | toy_poodle | 1.574020e-01 | True |
| 1996 | 874680097055178752 | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | Labrador_retriever | 0.836052 | True | Staffordshire_bullterrier | 4.706910e-02 | True | beagle | 3.600710e-02 | True |
| 1997 | 875021211251597312 | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | West_Highland_white_terrier | 0.714319 | True | Siberian_husky | 9.191330e-02 | True | Great_Pyrenees | 4.603820e-02 | True |
| 1998 | 875144289856114688 | https://pbs.twimg.com/ext_tw_video_thumb/87514... | 1 | Siberian_husky | 0.245048 | True | Pembroke | 2.237160e-01 | True | dingo | 1.607530e-01 | False |
| 1999 | 875747767867523072 | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | Labrador_retriever | 0.799551 | True | Chesapeake_Bay_retriever | 1.799750e-01 | True | vizsla | 4.617600e-03 | True |
| 2000 | 876120275196170240 | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | Bernese_mountain_dog | 0.534327 | True | Saint_Bernard | 3.463120e-01 | True | Greater_Swiss_Mountain_dog | 9.493270e-02 | True |
| 2001 | 876484053909872640 | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | golden_retriever | 0.874566 | True | Irish_terrier | 3.735420e-02 | True | chow | 1.672360e-02 | True |
| 2002 | 876838120628539392 | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | bloodhound | 0.575751 | True | redbone | 2.409700e-01 | True | Tibetan_mastiff | 8.893480e-02 | True |
| 2003 | 877201837425926144 | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | Pembroke | 0.931120 | True | Cardigan | 6.869820e-02 | True | basenji | 8.173790e-05 | True |
| 2004 | 877316821321428993 | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | Saluki | 0.509967 | True | Italian_greyhound | 9.049730e-02 | True | golden_retriever | 7.940580e-02 | True |
| 2005 | 877556246731214848 | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | basset | 0.995368 | True | Welsh_springer_spaniel | 1.936210e-03 | True | bathtub | 4.679190e-04 | False |
| 2006 | 877611172832227328 | https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg | 1 | Irish_setter | 0.364729 | True | golden_retriever | 2.029070e-01 | True | Irish_terrier | 1.074730e-01 | True |
| 2007 | 877736472329191424 | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | Chesapeake_Bay_retriever | 0.837956 | True | Labrador_retriever | 6.203420e-02 | True | Weimaraner | 4.059910e-02 | True |
| 2008 | 878057613040115712 | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | French_bulldog | 0.839097 | True | Boston_bull | 7.879940e-02 | True | toy_terrier | 1.524340e-02 | True |
| 2009 | 878281511006478336 | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | basset | 0.320420 | True | collie | 2.159750e-01 | True | Appenzeller | 1.285070e-01 | True |
| 2010 | 878776093423087618 | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | Italian_greyhound | 0.734684 | True | whippet | 1.504870e-01 | True | Ibizan_hound | 3.972460e-02 | True |
| 2011 | 879008229531029506 | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | vizsla | 0.960513 | True | miniature_pinscher | 9.430650e-03 | True | American_Staffordshire_terrier | 8.711300e-03 | True |
| 2012 | 879050749262655488 | https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg | 1 | tabby | 0.311861 | False | window_screen | 1.691230e-01 | False | Egyptian_cat | 1.329320e-01 | False |
| 2013 | 879376492567855104 | https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg | 1 | tricycle | 0.663601 | False | Labrador_retriever | 3.349610e-02 | True | Pembroke | 1.882660e-02 | True |
| 2014 | 879415818425184262 | https://pbs.twimg.com/ext_tw_video_thumb/87941... | 1 | English_springer | 0.383404 | True | Boston_bull | 1.349670e-01 | True | Cardigan | 1.104810e-01 | True |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | German_short-haired_pointer | 0.479896 | True | vizsla | 1.243530e-01 | True | bath_towel | 7.332020e-02 | False |
| 2016 | 879862464715927552 | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | basset | 0.813507 | True | beagle | 1.466540e-01 | True | cocker_spaniel | 9.485020e-03 | True |
| 2017 | 880095782870896641 | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | miniature_pinscher | 0.120298 | True | Rhodesian_ridgeback | 1.063950e-01 | True | beagle | 1.060730e-01 | True |
| 2018 | 880221127280381952 | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | Chihuahua | 0.238525 | True | meerkat | 1.042560e-01 | False | clumber | 5.258030e-02 | True |
| 2019 | 880465832366813184 | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | golden_retriever | 0.913255 | True | Labrador_retriever | 2.632860e-02 | True | cocker_spaniel | 9.370820e-03 | True |
| 2020 | 880872448815771648 | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | Pembroke | 0.791416 | True | Norwich_terrier | 6.139290e-02 | True | Chihuahua | 3.372570e-02 | True |
| 2021 | 880935762899988482 | https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg | 1 | street_sign | 0.251801 | False | umbrella | 1.151230e-01 | False | traffic_light | 6.953380e-02 | False |
| 2022 | 881268444196462592 | https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg | 1 | tusker | 0.473303 | False | Indian_elephant | 2.456460e-01 | False | ibex | 5.566070e-02 | False |
| 2023 | 881536004380872706 | https://pbs.twimg.com/ext_tw_video_thumb/88153... | 1 | Samoyed | 0.281463 | True | Angora | 2.720660e-01 | False | Persian_cat | 1.148540e-01 | False |
| 2024 | 881666595344535552 | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | Saluki | 0.529012 | True | Afghan_hound | 2.500030e-01 | True | golden_retriever | 1.607390e-01 | True |
| 2025 | 881906580714921986 | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | Weimaraner | 0.291539 | True | Chesapeake_Bay_retriever | 2.789660e-01 | True | koala | 1.270170e-01 | False |
| 2026 | 882045870035918850 | https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg | 1 | web_site | 0.949591 | False | dhole | 1.732580e-02 | False | golden_retriever | 6.940630e-03 | True |
| 2027 | 882268110199369728 | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | golden_retriever | 0.762211 | True | Labrador_retriever | 9.898490e-02 | True | cocker_spaniel | 1.719950e-02 | True |
| 2028 | 882627270321602560 | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | Pembroke | 0.542982 | True | Chihuahua | 2.519880e-01 | True | Cardigan | 1.076990e-01 | True |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | Labrador_retriever | 0.850050 | True | Chesapeake_Bay_retriever | 7.425700e-02 | True | flat-coated_retriever | 1.557940e-02 | True |
| 2030 | 882992080364220416 | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | Eskimo_dog | 0.466778 | True | Siberian_husky | 4.060440e-01 | True | dingo | 7.341440e-02 | False |
| 2031 | 883117836046086144 | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | golden_retriever | 0.949562 | True | Labrador_retriever | 4.594790e-02 | True | kuvasz | 2.470940e-03 | True |
| 2032 | 883360690899218434 | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | chow | 0.987997 | True | Tibetan_mastiff | 7.098720e-03 | True | Newfoundland | 2.140330e-03 | True |
| 2033 | 883482846933004288 | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | golden_retriever | 0.943082 | True | Labrador_retriever | 3.240900e-02 | True | kuvasz | 5.500720e-03 | True |
| 2034 | 883838122936631299 | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | Doberman | 0.610946 | True | miniature_pinscher | 2.996030e-01 | True | kelpie | 6.302030e-02 | True |
| 2035 | 884162670584377345 | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | German_shepherd | 0.707046 | True | malinois | 1.993960e-01 | True | Norwegian_elkhound | 4.914760e-02 | True |
| 2036 | 884441805382717440 | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | Pembroke | 0.993225 | True | Cardigan | 3.216480e-03 | True | Chihuahua | 2.080890e-03 | True |
| 2037 | 884562892145688576 | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | pug | 0.546406 | True | French_bulldog | 4.042910e-01 | True | Brabancon_griffon | 4.400190e-02 | True |
| 2038 | 884876753390489601 | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | chow | 0.822103 | True | Norwich_terrier | 1.060750e-01 | True | Norfolk_terrier | 3.734850e-02 | True |
| 2039 | 884925521741709313 | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | Italian_greyhound | 0.259916 | True | American_Staffordshire_terrier | 1.984510e-01 | True | Staffordshire_bullterrier | 1.277250e-01 | True |
| 2040 | 885167619883638784 | https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg | 4 | malamute | 0.812482 | True | Siberian_husky | 7.171250e-02 | True | Eskimo_dog | 5.576970e-02 | True |
| 2041 | 885311592912609280 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 2042 | 885528943205470208 | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | pug | 0.369275 | True | Labrador_retriever | 2.658350e-01 | True | kuvasz | 1.346970e-01 | True |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | Blenheim_spaniel | 0.972494 | True | Shih-Tzu | 6.630120e-03 | True | Bernese_mountain_dog | 6.239150e-03 | True |
| 2044 | 886258384151887873 | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | pug | 0.943575 | True | shower_cap | 2.528560e-02 | False | Siamese_cat | 2.848920e-03 | False |
| 2045 | 886366144734445568 | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | French_bulldog | 0.999201 | True | Chihuahua | 3.611780e-04 | True | Boston_bull | 7.556160e-05 | True |
| 2046 | 886680336477933568 | https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg | 1 | convertible | 0.738995 | False | sports_car | 1.399520e-01 | False | car_wheel | 4.417270e-02 | False |
| 2047 | 886736880519319552 | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | kuvasz | 0.309706 | True | Great_Pyrenees | 1.861360e-01 | True | Dandie_Dinmont | 8.634630e-02 | True |
| 2048 | 886983233522544640 | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | Chihuahua | 0.793469 | True | toy_terrier | 1.435280e-01 | True | can_opener | 3.225290e-02 | False |
| 2049 | 887101392804085760 | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | Samoyed | 0.733942 | True | Eskimo_dog | 3.502950e-02 | True | Staffordshire_bullterrier | 2.970470e-02 | True |
| 2050 | 887343217045368832 | https://pbs.twimg.com/ext_tw_video_thumb/88734... | 1 | Mexican_hairless | 0.330741 | True | sea_lion | 2.756450e-01 | False | Weimaraner | 1.342030e-01 | True |
| 2051 | 887473957103951883 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2052 | 887517139158093824 | https://pbs.twimg.com/ext_tw_video_thumb/88751... | 1 | limousine | 0.130432 | False | tow_truck | 2.917540e-02 | False | shopping_cart | 2.632080e-02 | False |
| 2053 | 887705289381826560 | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | basset | 0.821664 | True | redbone | 8.758150e-02 | True | Weimaraner | 2.623640e-02 | True |
| 2054 | 888078434458587136 | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | French_bulldog | 0.995026 | True | pug | 9.319080e-04 | True | bull_mastiff | 9.032110e-04 | True |
| 2055 | 888202515573088257 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2056 | 888554962724278272 | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | Siberian_husky | 0.700377 | True | Eskimo_dog | 1.665110e-01 | True | malamute | 1.114110e-01 | True |
| 2057 | 888804989199671297 | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | golden_retriever | 0.469760 | True | Labrador_retriever | 1.841720e-01 | True | English_setter | 7.348170e-02 | True |
| 2058 | 888917238123831296 | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | golden_retriever | 0.714719 | True | Tibetan_mastiff | 1.201840e-01 | True | Labrador_retriever | 1.055060e-01 | True |
| 2059 | 889278841981685760 | https://pbs.twimg.com/ext_tw_video_thumb/88927... | 1 | whippet | 0.626152 | True | borzoi | 1.947420e-01 | True | Saluki | 2.735070e-02 | True |
| 2060 | 889531135344209921 | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | golden_retriever | 0.953442 | True | Labrador_retriever | 1.383410e-02 | True | redbone | 7.957750e-03 | True |
| 2061 | 889638837579907072 | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | French_bulldog | 0.991650 | True | boxer | 2.128640e-03 | True | Staffordshire_bullterrier | 1.498180e-03 | True |
| 2062 | 889665388333682689 | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | Pembroke | 0.966327 | True | Cardigan | 2.735570e-02 | True | basenji | 4.633230e-03 | True |
| 2063 | 889880896479866881 | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | French_bulldog | 0.377417 | True | Labrador_retriever | 1.513170e-01 | True | muzzle | 8.298110e-02 | False |
| 2064 | 890006608113172480 | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | Samoyed | 0.957979 | True | Pomeranian | 1.388350e-02 | True | chow | 8.167480e-03 | True |
| 2065 | 890240255349198849 | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | Pembroke | 0.511319 | True | Cardigan | 4.510380e-01 | True | Chihuahua | 2.924820e-02 | True |
| 2066 | 890609185150312448 | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | Irish_terrier | 0.487574 | True | Irish_setter | 1.930540e-01 | True | Chesapeake_Bay_retriever | 1.181840e-01 | True |
| 2067 | 890729181411237888 | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | Pomeranian | 0.566142 | True | Eskimo_dog | 1.784060e-01 | True | Pembroke | 7.650690e-02 | True |
| 2068 | 890971913173991426 | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | Appenzeller | 0.341703 | True | Border_collie | 1.992870e-01 | True | ice_lolly | 1.935480e-01 | False |
| 2069 | 891087950875897856 | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | Chesapeake_Bay_retriever | 0.425595 | True | Irish_terrier | 1.163170e-01 | True | Indian_elephant | 7.690220e-02 | False |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 | True | English_springer | 2.257700e-01 | True | German_short-haired_pointer | 1.752190e-01 | True |
| 2071 | 891689557279858688 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | paper_towel | 0.170278 | False | Labrador_retriever | 1.680860e-01 | True | spatula | 4.083590e-02 | False |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | Chihuahua | 0.716012 | True | malamute | 7.825300e-02 | True | kelpie | 3.137890e-02 | True |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | Chihuahua | 0.323581 | True | Pekinese | 9.064650e-02 | True | papillon | 6.895690e-02 | True |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 8.585110e-02 | False | banana | 7.611000e-02 | False |
archive_df
| tweet_id | in_reply_to_status_id | in_reply_to_user_id | timestamp | source | text | retweeted_status_id | retweeted_status_user_id | retweeted_status_timestamp | expanded_urls | rating_numerator | rating_denominator | name | doggo | floofer | pupper | puppo | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | NaN | NaN | 2017-08-01 16:23:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phineas. He's a mystical boy. Only eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | None | None | None | None |
| 1 | 892177421306343426 | NaN | NaN | 2017-08-01 00:17:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tilly. She's just checking pup on you.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | None | None | None | None |
| 2 | 891815181378084864 | NaN | NaN | 2017-07-31 00:18:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He is a rare Norwegian Pouncin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | None | None | None | None |
| 3 | 891689557279858688 | NaN | NaN | 2017-07-30 15:58:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Darla. She commenced a snooze mid meal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | None | None | None | None |
| 4 | 891327558926688256 | NaN | NaN | 2017-07-29 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Franklin. He would like you to stop ca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | None | None | None | None |
| 5 | 891087950875897856 | NaN | NaN | 2017-07-29 00:08:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a majestic great white breaching ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/891087950... | 13 | 10 | None | None | None | None | None |
| 6 | 890971913173991426 | NaN | NaN | 2017-07-28 16:27:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jax. He enjoys ice cream so much he gets ... | NaN | NaN | NaN | https://gofundme.com/ydvmve-surgery-for-jax,ht... | 13 | 10 | Jax | None | None | None | None |
| 7 | 890729181411237888 | NaN | NaN | 2017-07-28 00:22:40 +0000 | <a href="http://twitter.com/download/iphone" r... | When you watch your owner call another dog a g... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890729181... | 13 | 10 | None | None | None | None | None |
| 8 | 890609185150312448 | NaN | NaN | 2017-07-27 16:25:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zoey. She doesn't want to be one of th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890609185... | 13 | 10 | Zoey | None | None | None | None |
| 9 | 890240255349198849 | NaN | NaN | 2017-07-26 15:59:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cassie. She is a college pup. Studying... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890240255... | 14 | 10 | Cassie | doggo | None | None | None |
| 10 | 890006608113172480 | NaN | NaN | 2017-07-26 00:31:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Koda. He is a South Australian decksha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/890006608... | 13 | 10 | Koda | None | None | None | None |
| 11 | 889880896479866881 | NaN | NaN | 2017-07-25 16:11:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bruno. He is a service shark. Only get... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889880896... | 13 | 10 | Bruno | None | None | None | None |
| 12 | 889665388333682689 | NaN | NaN | 2017-07-25 01:55:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a puppo that seems to be on the fence a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889665388... | 13 | 10 | None | None | None | None | puppo |
| 13 | 889638837579907072 | NaN | NaN | 2017-07-25 00:10:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ted. He does his best. Sometimes that'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889638837... | 12 | 10 | Ted | None | None | None | None |
| 14 | 889531135344209921 | NaN | NaN | 2017-07-24 17:02:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stuart. He's sporting his favorite fan... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889531135... | 13 | 10 | Stuart | None | None | None | puppo |
| 15 | 889278841981685760 | NaN | NaN | 2017-07-24 00:19:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. You're witnessing one of his m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/889278841... | 13 | 10 | Oliver | None | None | None | None |
| 16 | 888917238123831296 | NaN | NaN | 2017-07-23 00:22:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jim. He found a fren. Taught him how t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888917238... | 12 | 10 | Jim | None | None | None | None |
| 17 | 888804989199671297 | NaN | NaN | 2017-07-22 16:56:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zeke. He has a new stick. Very proud o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888804989... | 13 | 10 | Zeke | None | None | None | None |
| 18 | 888554962724278272 | NaN | NaN | 2017-07-22 00:23:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ralphus. He's powering up. Attempting ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888554962... | 13 | 10 | Ralphus | None | None | None | None |
| 19 | 888202515573088257 | NaN | NaN | 2017-07-21 01:02:36 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Canela. She attempted s... | 8.874740e+17 | 4.196984e+09 | 2017-07-19 00:47:34 +0000 | https://twitter.com/dog_rates/status/887473957... | 13 | 10 | Canela | None | None | None | None |
| 20 | 888078434458587136 | NaN | NaN | 2017-07-20 16:49:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gerald. He was just told he didn't get... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/888078434... | 12 | 10 | Gerald | None | None | None | None |
| 21 | 887705289381826560 | NaN | NaN | 2017-07-19 16:06:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeffrey. He has a monopoly on the pool... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887705289... | 13 | 10 | Jeffrey | None | None | None | None |
| 22 | 887517139158093824 | NaN | NaN | 2017-07-19 03:39:09 +0000 | <a href="http://twitter.com/download/iphone" r... | I've yet to rate a Venezuelan Hover Wiener. Th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887517139... | 14 | 10 | such | None | None | None | None |
| 23 | 887473957103951883 | NaN | NaN | 2017-07-19 00:47:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Canela. She attempted some fancy porch... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887473957... | 13 | 10 | Canela | None | None | None | None |
| 24 | 887343217045368832 | NaN | NaN | 2017-07-18 16:08:03 +0000 | <a href="http://twitter.com/download/iphone" r... | You may not have known you needed to see this ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887343217... | 13 | 10 | None | None | None | None | None |
| 25 | 887101392804085760 | NaN | NaN | 2017-07-18 00:07:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This... is a Jubilant Antarctic House Bear. We... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/887101392... | 12 | 10 | None | None | None | None | None |
| 26 | 886983233522544640 | NaN | NaN | 2017-07-17 16:17:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maya. She's very shy. Rarely leaves he... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886983233... | 13 | 10 | Maya | None | None | None | None |
| 27 | 886736880519319552 | NaN | NaN | 2017-07-16 23:58:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mingus. He's a wonderful father to his... | NaN | NaN | NaN | https://www.gofundme.com/mingusneedsus,https:/... | 13 | 10 | Mingus | None | None | None | None |
| 28 | 886680336477933568 | NaN | NaN | 2017-07-16 20:14:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Derek. He's late for a dog meeting. 13... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886680336... | 13 | 10 | Derek | None | None | None | None |
| 29 | 886366144734445568 | NaN | NaN | 2017-07-15 23:25:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Roscoe. Another pupper fallen victim t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886366144... | 12 | 10 | Roscoe | None | None | pupper | None |
| 30 | 886267009285017600 | 8.862664e+17 | 2.281182e+09 | 2017-07-15 16:51:35 +0000 | <a href="http://twitter.com/download/iphone" r... | @NonWhiteHat @MayhewMayhem omg hello tanner yo... | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 31 | 886258384151887873 | NaN | NaN | 2017-07-15 16:17:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Waffles. His doggles are pupside down.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/886258384... | 13 | 10 | Waffles | None | None | None | None |
| 32 | 886054160059072513 | NaN | NaN | 2017-07-15 02:45:48 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @Athletics: 12/10 #BATP https://t.co/WxwJmv... | 8.860537e+17 | 1.960740e+07 | 2017-07-15 02:44:07 +0000 | https://twitter.com/dog_rates/status/886053434... | 12 | 10 | None | None | None | None | None |
| 33 | 885984800019947520 | NaN | NaN | 2017-07-14 22:10:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Viewer discretion advised. This is Jimbo. He w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/885984800... | 12 | 10 | Jimbo | None | None | None | None |
| 34 | 885528943205470208 | NaN | NaN | 2017-07-13 15:58:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maisey. She fell asleep mid-excavation... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/885528943... | 13 | 10 | Maisey | None | None | None | None |
| 35 | 885518971528720385 | NaN | NaN | 2017-07-13 15:19:09 +0000 | <a href="http://twitter.com/download/iphone" r... | I have a new hero and his name is Howard. 14/1... | NaN | NaN | NaN | https://twitter.com/4bonds2carbon/status/88551... | 14 | 10 | None | None | None | None | None |
| 36 | 885311592912609280 | NaN | NaN | 2017-07-13 01:35:06 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Lilly. She just paralle... | 8.305833e+17 | 4.196984e+09 | 2017-02-12 01:04:29 +0000 | https://twitter.com/dog_rates/status/830583320... | 13 | 10 | Lilly | None | None | None | None |
| 37 | 885167619883638784 | NaN | NaN | 2017-07-12 16:03:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a corgi undercover as a malamute.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/885167619... | 13 | 10 | None | None | None | None | None |
| 38 | 884925521741709313 | NaN | NaN | 2017-07-12 00:01:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Earl. He found a hat. Nervous about wh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884925521... | 12 | 10 | Earl | None | None | None | None |
| 39 | 884876753390489601 | NaN | NaN | 2017-07-11 20:47:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lola. It's her first time outside. Mus... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884876753... | 13 | 10 | Lola | None | None | None | None |
| 40 | 884562892145688576 | NaN | NaN | 2017-07-11 00:00:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kevin. He's just so happy. 13/10 what ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884562892... | 13 | 10 | Kevin | None | None | None | None |
| 41 | 884441805382717440 | NaN | NaN | 2017-07-10 15:58:53 +0000 | <a href="http://twitter.com/download/iphone" r... | I present to you, Pup in Hat. Pup in Hat is gr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884441805... | 14 | 10 | None | None | None | None | None |
| 42 | 884247878851493888 | NaN | NaN | 2017-07-10 03:08:17 +0000 | <a href="http://twitter.com/download/iphone" r... | OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LIT... | NaN | NaN | NaN | https://twitter.com/kaijohnson_19/status/88396... | 13 | 10 | None | None | None | None | None |
| 43 | 884162670584377345 | NaN | NaN | 2017-07-09 21:29:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Yogi. He doesn't have any important dog m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/884162670... | 12 | 10 | Yogi | doggo | None | None | None |
| 44 | 883838122936631299 | NaN | NaN | 2017-07-09 00:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Noah. He can't believe someone made th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883838122... | 12 | 10 | Noah | None | None | None | None |
| 45 | 883482846933004288 | NaN | NaN | 2017-07-08 00:28:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bella. She hopes her smile made you sm... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883482846... | 5 | 10 | Bella | None | None | None | None |
| 46 | 883360690899218434 | NaN | NaN | 2017-07-07 16:22:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Grizzwald. He may be the floofiest floofe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883360690... | 13 | 10 | Grizzwald | None | floofer | None | None |
| 47 | 883117836046086144 | NaN | NaN | 2017-07-07 00:17:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Please only send dogs. We don't rate mechanics... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/883117836... | 13 | 10 | None | None | None | None | None |
| 48 | 882992080364220416 | NaN | NaN | 2017-07-06 15:58:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rusty. He wasn't ready for the first p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882992080... | 13 | 10 | Rusty | None | None | None | None |
| 49 | 882762694511734784 | NaN | NaN | 2017-07-06 00:46:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gus. He's quite the cheeky pupper. Alr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882762694... | 12 | 10 | Gus | None | None | pupper | None |
| 50 | 882627270321602560 | NaN | NaN | 2017-07-05 15:48:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stanley. He has his first swim lesson ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882627270... | 13 | 10 | Stanley | None | None | None | None |
| 51 | 882268110199369728 | NaN | NaN | 2017-07-04 16:01:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alfy. You're witnessing his first wate... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882268110... | 13 | 10 | Alfy | None | None | None | None |
| 52 | 882045870035918850 | NaN | NaN | 2017-07-04 01:18:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Koko. Her owner, inspired by Barney, r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/882045870... | 13 | 10 | Koko | None | None | None | None |
| 53 | 881906580714921986 | NaN | NaN | 2017-07-03 16:04:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rey. He's a Benebop Cumberfloof. 12/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881906580... | 12 | 10 | Rey | None | None | None | None |
| 54 | 881666595344535552 | NaN | NaN | 2017-07-03 00:11:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gary. He couldn't miss this puppertuni... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881666595... | 13 | 10 | Gary | None | None | None | None |
| 55 | 881633300179243008 | 8.816070e+17 | 4.738443e+07 | 2017-07-02 21:58:53 +0000 | <a href="http://twitter.com/download/iphone" r... | @roushfenway These are good dogs but 17/10 is ... | NaN | NaN | NaN | NaN | 17 | 10 | None | None | None | None | None |
| 56 | 881536004380872706 | NaN | NaN | 2017-07-02 15:32:16 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a pupper approaching maximum borkdrive... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881536004... | 14 | 10 | a | None | None | pupper | None |
| 57 | 881268444196462592 | NaN | NaN | 2017-07-01 21:49:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Elliot. He's a Canadian Forrest Pup. Unus... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/881268444... | 12 | 10 | Elliot | None | None | None | None |
| 58 | 880935762899988482 | NaN | NaN | 2017-06-30 23:47:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louis. He's crossing. It's a big deal.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880935762... | 13 | 10 | Louis | None | None | None | None |
| 59 | 880872448815771648 | NaN | NaN | 2017-06-30 19:35:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Ugh not again. We only rate dogs. Please don't... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880872448... | 12 | 10 | None | None | None | None | None |
| 60 | 880465832366813184 | NaN | NaN | 2017-06-29 16:39:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bella. She had her first beach experie... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880465832... | 12 | 10 | Bella | None | None | None | None |
| 61 | 880221127280381952 | NaN | NaN | 2017-06-29 00:27:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jesse. He's a Fetty Woof. His tongue ejec... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880221127... | 12 | 10 | Jesse | None | None | None | None |
| 62 | 880095782870896641 | NaN | NaN | 2017-06-28 16:09:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Please don't send in photos without dogs in th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/880095782... | 11 | 10 | None | None | None | None | None |
| 63 | 879862464715927552 | NaN | NaN | 2017-06-28 00:42:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Romeo. He would like to do an entrance... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879862464... | 13 | 10 | Romeo | None | None | None | None |
| 64 | 879674319642796034 | 8.795538e+17 | 3.105441e+09 | 2017-06-27 12:14:36 +0000 | <a href="http://twitter.com/download/iphone" r... | @RealKentMurphy 14/10 confirmed | NaN | NaN | NaN | NaN | 14 | 10 | None | None | None | None | None |
| 65 | 879492040517615616 | NaN | NaN | 2017-06-27 00:10:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bailey. He thinks you should measure e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879492040... | 12 | 10 | Bailey | None | None | None | None |
| 66 | 879415818425184262 | NaN | NaN | 2017-06-26 19:07:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Duddles. He did an attempt. 13/10 some... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879415818... | 13 | 10 | Duddles | None | None | None | None |
| 67 | 879376492567855104 | NaN | NaN | 2017-06-26 16:31:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jack AKA Stephen Furry. You're not sco... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879376492... | 12 | 10 | Jack | None | None | None | None |
| 68 | 879130579576475649 | NaN | NaN | 2017-06-26 00:13:58 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Emmy. She was adopted t... | 8.780576e+17 | 4.196984e+09 | 2017-06-23 01:10:23 +0000 | https://twitter.com/dog_rates/status/878057613... | 14 | 10 | Emmy | None | None | None | None |
| 69 | 879050749262655488 | NaN | NaN | 2017-06-25 18:56:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Steven. He has trouble relating to oth... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879050749... | 11 | 10 | Steven | None | None | None | None |
| 70 | 879008229531029506 | NaN | NaN | 2017-06-25 16:07:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Beau. That is Beau's balloon. He takes... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/879008229... | 13 | 10 | Beau | None | None | None | None |
| 71 | 878776093423087618 | NaN | NaN | 2017-06-25 00:45:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Snoopy. He's a proud #PrideMonthPuppo.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/878776093... | 13 | 10 | Snoopy | None | None | None | puppo |
| 72 | 878604707211726852 | NaN | NaN | 2017-06-24 13:24:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Martha is stunning how h*ckin dare you. 13/10 ... | NaN | NaN | NaN | https://twitter.com/bbcworld/status/8785998685... | 13 | 10 | None | None | None | None | None |
| 73 | 878404777348136964 | NaN | NaN | 2017-06-24 00:09:53 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Shadow. In an attempt to r... | 8.782815e+17 | 4.196984e+09 | 2017-06-23 16:00:04 +0000 | https://www.gofundme.com/3yd6y1c,https://twitt... | 13 | 10 | Shadow | None | None | None | None |
| 74 | 878316110768087041 | NaN | NaN | 2017-06-23 18:17:33 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Terrance. He's being yelle... | 6.690004e+17 | 4.196984e+09 | 2015-11-24 03:51:38 +0000 | https://twitter.com/dog_rates/status/669000397... | 11 | 10 | Terrance | None | None | None | None |
| 75 | 878281511006478336 | NaN | NaN | 2017-06-23 16:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Shadow. In an attempt to reach maximum zo... | NaN | NaN | NaN | https://www.gofundme.com/3yd6y1c,https://twitt... | 13 | 10 | Shadow | None | None | None | None |
| 76 | 878057613040115712 | NaN | NaN | 2017-06-23 01:10:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Emmy. She was adopted today. Massive r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/878057613... | 14 | 10 | Emmy | None | None | None | None |
| 77 | 877736472329191424 | NaN | NaN | 2017-06-22 03:54:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Aja. She was just told she's a good do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877736472... | 13 | 10 | Aja | None | None | None | None |
| 78 | 877611172832227328 | NaN | NaN | 2017-06-21 19:36:23 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @rachel2195: @dog_rates the boyfriend and h... | 8.768508e+17 | 5.128045e+08 | 2017-06-19 17:14:49 +0000 | https://twitter.com/rachel2195/status/87685077... | 14 | 10 | None | None | None | pupper | None |
| 79 | 877556246731214848 | NaN | NaN | 2017-06-21 15:58:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She's both pupset and fired pup... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877556246... | 12 | 10 | Penny | None | None | None | None |
| 80 | 877316821321428993 | NaN | NaN | 2017-06-21 00:06:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Dante. At first he wasn't a fan of his ne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877316821... | 13 | 10 | Dante | None | None | None | None |
| 81 | 877201837425926144 | NaN | NaN | 2017-06-20 16:29:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nelly. He graduated with his dogtorate... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/877201837... | 12 | 10 | Nelly | None | None | None | None |
| 82 | 876838120628539392 | NaN | NaN | 2017-06-19 16:24:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ginger. She's having a ruff Monday. To... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/876838120... | 12 | 10 | Ginger | None | None | pupper | None |
| 83 | 876537666061221889 | NaN | NaN | 2017-06-18 20:30:39 +0000 | <a href="http://twitter.com/download/iphone" r... | I can say with the pupmost confidence that the... | NaN | NaN | NaN | https://twitter.com/mpstowerham/status/8761629... | 14 | 10 | None | None | None | None | None |
| 84 | 876484053909872640 | NaN | NaN | 2017-06-18 16:57:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Benedict. He wants to thank you for th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/876484053... | 13 | 10 | Benedict | None | None | None | None |
| 85 | 876120275196170240 | NaN | NaN | 2017-06-17 16:52:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Venti, a seemingly caffeinated puppoccino... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/876120275... | 13 | 10 | Venti | None | None | None | None |
| 86 | 875747767867523072 | NaN | NaN | 2017-06-16 16:11:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Goose. He's a womanizer. Cheeky as h*c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/875747767... | 13 | 10 | Goose | None | None | None | None |
| 87 | 875144289856114688 | NaN | NaN | 2017-06-15 00:13:52 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Nugget and Hank. Nugget took Hank's bone.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/875144289... | 13 | 10 | Nugget | None | None | None | None |
| 88 | 875097192612077568 | NaN | NaN | 2017-06-14 21:06:43 +0000 | <a href="http://twitter.com/download/iphone" r... | You'll get your package when that precious man... | NaN | NaN | NaN | https://twitter.com/drboondoc/status/874413398... | 13 | 10 | None | None | None | None | None |
| 89 | 875021211251597312 | NaN | NaN | 2017-06-14 16:04:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys please stop sending pictures without any ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/875021211... | 12 | 10 | None | None | None | None | None |
| 90 | 874680097055178752 | NaN | NaN | 2017-06-13 17:29:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Cash. He hath acquired a stick. A very go... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874680097... | 12 | 10 | Cash | None | None | None | None |
| 91 | 874434818259525634 | NaN | NaN | 2017-06-13 01:14:41 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Coco. At first I though... | 8.663350e+17 | 4.196984e+09 | 2017-05-21 16:48:45 +0000 | https://twitter.com/dog_rates/status/866334964... | 12 | 10 | Coco | None | None | None | None |
| 92 | 874296783580663808 | NaN | NaN | 2017-06-12 16:06:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jed. He may be the fanciest pupper in ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874296783... | 13 | 10 | Jed | None | None | pupper | None |
| 93 | 874057562936811520 | NaN | NaN | 2017-06-12 00:15:36 +0000 | <a href="http://twitter.com/download/iphone" r... | I can't believe this keeps happening. This, is... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874057562... | 12 | 10 | None | None | None | None | None |
| 94 | 874012996292530176 | NaN | NaN | 2017-06-11 21:18:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sebastian. He can't see all the colors... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/874012996... | 13 | 10 | Sebastian | None | None | None | puppo |
| 95 | 873697596434513921 | NaN | NaN | 2017-06-11 00:25:14 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Walter. He won't start ... | 8.688804e+17 | 4.196984e+09 | 2017-05-28 17:23:24 +0000 | https://twitter.com/dog_rates/status/868880397... | 14 | 10 | Walter | None | None | None | None |
| 96 | 873580283840344065 | NaN | NaN | 2017-06-10 16:39:04 +0000 | <a href="http://twitter.com/download/iphone" r... | We usually don't rate Deck-bound Saskatoon Bla... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/873580283... | 13 | 10 | None | None | None | None | None |
| 97 | 873337748698140672 | NaN | NaN | 2017-06-10 00:35:19 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Sierra. She's one preci... | 8.732138e+17 | 4.196984e+09 | 2017-06-09 16:22:42 +0000 | https://www.gofundme.com/help-my-baby-sierra-g... | 12 | 10 | Sierra | None | None | pupper | None |
| 98 | 873213775632977920 | NaN | NaN | 2017-06-09 16:22:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sierra. She's one precious pupper. Abs... | NaN | NaN | NaN | https://www.gofundme.com/help-my-baby-sierra-g... | 12 | 10 | Sierra | None | None | pupper | None |
| 99 | 872967104147763200 | NaN | NaN | 2017-06-09 00:02:31 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a very large dog. He has a date later. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872967104... | 12 | 10 | None | doggo | None | None | None |
| 100 | 872820683541237760 | NaN | NaN | 2017-06-08 14:20:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Here are my favorite #dogsatpollingstations \n... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872820683... | 13 | 10 | None | None | None | None | None |
| 101 | 872668790621863937 | NaN | NaN | 2017-06-08 04:17:07 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @loganamnosis: Penelope here is doing me qu... | 8.726576e+17 | 1.547674e+08 | 2017-06-08 03:32:35 +0000 | https://twitter.com/loganamnosis/status/872657... | 14 | 10 | None | None | None | None | None |
| 102 | 872620804844003328 | NaN | NaN | 2017-06-08 01:06:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Monkey. She's supporting owners everyw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872620804... | 13 | 10 | Monkey | None | None | None | None |
| 103 | 872486979161796608 | NaN | NaN | 2017-06-07 16:14:40 +0000 | <a href="http://twitter.com/download/iphone" r... | We. Only. Rate. Dogs. Do not send in other thi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872486979... | 12 | 10 | None | None | None | None | None |
| 104 | 872261713294495745 | NaN | NaN | 2017-06-07 01:19:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harry. His ears are activated one at a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872261713... | 13 | 10 | Harry | None | None | None | None |
| 105 | 872122724285648897 | NaN | NaN | 2017-06-06 16:07:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kody. He's a baller. Wishes he was a l... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/872122724... | 12 | 10 | Kody | None | None | None | None |
| 106 | 871879754684805121 | NaN | NaN | 2017-06-06 00:01:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Lassie. She's celebrating #PrideM... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871879754... | 13 | 10 | Lassie | None | None | None | None |
| 107 | 871762521631449091 | NaN | NaN | 2017-06-05 16:15:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rover. As part of pupper protocol he h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871762521... | 12 | 10 | Rover | None | None | pupper | None |
| 108 | 871515927908634625 | NaN | NaN | 2017-06-04 23:56:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Napolean. He's a Raggedy East Nicaragu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871515927... | 12 | 10 | Napolean | doggo | None | None | None |
| 109 | 871166179821445120 | NaN | NaN | 2017-06-04 00:46:17 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Dawn. She's just checki... | 8.410770e+17 | 4.196984e+09 | 2017-03-13 00:02:39 +0000 | https://twitter.com/dog_rates/status/841077006... | 12 | 10 | Dawn | None | None | None | None |
| 110 | 871102520638267392 | NaN | NaN | 2017-06-03 20:33:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH | NaN | NaN | NaN | https://twitter.com/animalcog/status/871075758... | 14 | 10 | None | doggo | None | None | None |
| 111 | 871032628920680449 | NaN | NaN | 2017-06-03 15:55:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Boomer. He's doing an advanced water t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/871032628... | 13 | 10 | Boomer | None | None | None | None |
| 112 | 870804317367881728 | NaN | NaN | 2017-06-03 00:48:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Real funny guys. Sending in a pic without a do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870804317... | 11 | 10 | None | None | None | None | None |
| 113 | 870726314365509632 | 8.707262e+17 | 1.648776e+07 | 2017-06-02 19:38:25 +0000 | <a href="http://twitter.com/download/iphone" r... | @ComplicitOwl @ShopWeRateDogs >10/10 is res... | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 114 | 870656317836468226 | NaN | NaN | 2017-06-02 15:00:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cody. He zoomed too aggressively and t... | NaN | NaN | NaN | https://www.gofundme.com/help-fix-codys-torn-a... | 13 | 10 | Cody | None | None | None | None |
| 115 | 870374049280663552 | NaN | NaN | 2017-06-01 20:18:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zoey. She really likes the planet. Wou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870374049... | 13 | 10 | Zoey | None | None | None | None |
| 116 | 870308999962521604 | NaN | NaN | 2017-06-01 16:00:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rumble, but he's not ready to. Would r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870308999... | 13 | 10 | Rumble | None | None | None | None |
| 117 | 870063196459192321 | NaN | NaN | 2017-05-31 23:43:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Clifford. He's quite large. Also red. Goo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/870063196... | 14 | 10 | Clifford | None | None | None | None |
| 118 | 869988702071779329 | NaN | NaN | 2017-05-31 18:47:24 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: We only rate dogs. This is quit... | 8.591970e+17 | 4.196984e+09 | 2017-05-02 00:04:57 +0000 | https://twitter.com/dog_rates/status/859196978... | 12 | 10 | quite | None | None | None | None |
| 119 | 869772420881756160 | NaN | NaN | 2017-05-31 04:27:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dewey (pronounced "covfefe"). He's hav... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869772420... | 13 | 10 | Dewey | None | None | None | None |
| 120 | 869702957897576449 | NaN | NaN | 2017-05-30 23:51:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Stanley. He likes road trips. Will shift ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869702957... | 13 | 10 | Stanley | None | None | None | None |
| 121 | 869596645499047938 | NaN | NaN | 2017-05-30 16:49:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scout. He just graduated. Officially a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869596645... | 12 | 10 | Scout | doggo | None | None | None |
| 122 | 869227993411051520 | NaN | NaN | 2017-05-29 16:24:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gizmo. His favorite thing is standing ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/869227993... | 13 | 10 | Gizmo | None | None | None | None |
| 123 | 868880397819494401 | NaN | NaN | 2017-05-28 17:23:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Walter. He won't start hydrotherapy wi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/868880397... | 14 | 10 | Walter | None | None | None | None |
| 124 | 868639477480148993 | NaN | NaN | 2017-05-28 01:26:04 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to Cooper. His expres... | 8.685523e+17 | 4.196984e+09 | 2017-05-27 19:39:34 +0000 | https://www.gofundme.com/3ti3nps,https://twitt... | 12 | 10 | Cooper | None | None | None | None |
| 125 | 868622495443632128 | NaN | NaN | 2017-05-28 00:18:35 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a h*ckin peaceful boy. Unbothered by th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/868622495... | 13 | 10 | None | None | None | None | None |
| 126 | 868552278524837888 | NaN | NaN | 2017-05-27 19:39:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Cooper. His expression is the sam... | NaN | NaN | NaN | https://www.gofundme.com/3ti3nps,https://twitt... | 12 | 10 | Cooper | None | None | None | None |
| 127 | 867900495410671616 | NaN | NaN | 2017-05-26 00:29:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Unbelievable. We only rate dogs. Please don't ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867900495... | 12 | 10 | None | None | None | None | None |
| 128 | 867774946302451713 | NaN | NaN | 2017-05-25 16:10:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Harold. He's h*ckin cooperative. 13/10 g... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867774946... | 13 | 10 | Harold | None | None | None | None |
| 129 | 867421006826221569 | NaN | NaN | 2017-05-24 16:44:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shikha. She just watched you drop a sk... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867421006... | 12 | 10 | Shikha | None | None | None | puppo |
| 130 | 867072653475098625 | NaN | NaN | 2017-05-23 17:40:04 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @rachaeleasler: these @dog_rates hats are 1... | 8.650134e+17 | 7.874618e+17 | 2017-05-18 01:17:25 +0000 | https://twitter.com/rachaeleasler/status/86501... | 13 | 10 | None | None | None | None | None |
| 131 | 867051520902168576 | NaN | NaN | 2017-05-23 16:16:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh my this spooked me up. We only rate dogs, n... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/867051520... | 13 | 10 | None | None | None | None | None |
| 132 | 866816280283807744 | NaN | NaN | 2017-05-23 00:41:20 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Jamesy. He gives a kiss... | 8.664507e+17 | 4.196984e+09 | 2017-05-22 00:28:40 +0000 | https://twitter.com/dog_rates/status/866450705... | 13 | 10 | Jamesy | None | None | pupper | None |
| 133 | 866720684873056260 | NaN | NaN | 2017-05-22 18:21:28 +0000 | <a href="http://twitter.com/download/iphone" r... | He was providing for his family 13/10 how dare... | NaN | NaN | NaN | https://twitter.com/nbcnews/status/86645871888... | 13 | 10 | None | None | None | None | None |
| 134 | 866686824827068416 | NaN | NaN | 2017-05-22 16:06:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lili. She can't believe you betrayed h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/866686824... | 12 | 10 | Lili | None | None | None | None |
| 135 | 866450705531457537 | NaN | NaN | 2017-05-22 00:28:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jamesy. He gives a kiss to every other... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/866450705... | 13 | 10 | Jamesy | None | None | pupper | None |
| 136 | 866334964761202691 | NaN | NaN | 2017-05-21 16:48:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Coco. At first I thought she was a clo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/866334964... | 12 | 10 | Coco | None | None | None | None |
| 137 | 866094527597207552 | NaN | NaN | 2017-05-21 00:53:21 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Here's a pupper before and afte... | 8.378202e+17 | 4.196984e+09 | 2017-03-04 00:21:08 +0000 | https://twitter.com/dog_rates/status/837820167... | 12 | 10 | None | None | None | pupper | None |
| 138 | 865718153858494464 | NaN | NaN | 2017-05-19 23:57:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Boomer. He's just checking pup on you. Ho... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/865718153... | 13 | 10 | Boomer | None | None | None | None |
| 139 | 865359393868664832 | NaN | NaN | 2017-05-19 00:12:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sammy. Her tongue ejects without warni... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/865359393... | 13 | 10 | Sammy | None | None | None | None |
| 140 | 865006731092295680 | NaN | NaN | 2017-05-18 00:50:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nelly. He really hopes you like his Ha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/865006731... | 13 | 10 | Nelly | None | None | None | None |
| 141 | 864873206498414592 | NaN | NaN | 2017-05-17 16:00:15 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please don't send in Jesus.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/864873206... | 14 | 10 | None | None | None | None | None |
| 142 | 864279568663928832 | NaN | NaN | 2017-05-16 00:41:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Meatball. He doing what's known in the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/864279568... | 12 | 10 | Meatball | None | None | None | None |
| 143 | 864197398364647424 | NaN | NaN | 2017-05-15 19:14:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Paisley. She ate a flower just to prov... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/864197398... | 13 | 10 | Paisley | None | None | None | None |
| 144 | 863907417377173506 | NaN | NaN | 2017-05-15 00:02:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Albus. He's quite impressive at hide a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863907417... | 13 | 10 | Albus | None | None | None | None |
| 145 | 863553081350529029 | NaN | NaN | 2017-05-14 00:34:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Neptune. He's a backpup vocalist for t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863553081... | 13 | 10 | Neptune | None | None | None | None |
| 146 | 863471782782697472 | NaN | NaN | 2017-05-13 19:11:30 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to Quinn. She's quite... | 8.630625e+17 | 4.196984e+09 | 2017-05-12 16:05:02 +0000 | https://www.gofundme.com/helpquinny,https://tw... | 13 | 10 | Quinn | None | None | None | None |
| 147 | 863432100342583297 | NaN | NaN | 2017-05-13 16:33:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Belle. She's never been more pupset. E... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863432100... | 12 | 10 | Belle | None | None | None | None |
| 148 | 863427515083354112 | 8.634256e+17 | 7.759620e+07 | 2017-05-13 16:15:35 +0000 | <a href="http://twitter.com/download/iphone" r... | @Jack_Septic_Eye I'd need a few more pics to p... | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 149 | 863079547188785154 | 6.671522e+17 | 4.196984e+09 | 2017-05-12 17:12:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Ladies and gentlemen... I found Pipsy. He may ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/863079547... | 14 | 10 | None | None | None | None | None |
| 150 | 863062471531167744 | NaN | NaN | 2017-05-12 16:05:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Quinn. She's quite the goofball. ... | NaN | NaN | NaN | https://www.gofundme.com/helpquinny,https://tw... | 13 | 10 | Quinn | None | None | None | None |
| 151 | 862831371563274240 | NaN | NaN | 2017-05-12 00:46:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zooey. She's the world's biggest fan o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862831371... | 13 | 10 | Zooey | None | None | None | None |
| 152 | 862722525377298433 | NaN | NaN | 2017-05-11 17:34:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dave. He passed the h*ck out. It's bar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862722525... | 11 | 10 | Dave | None | None | None | None |
| 153 | 862457590147678208 | NaN | NaN | 2017-05-11 00:01:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jersey. He likes to watch movies, but ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862457590... | 13 | 10 | Jersey | None | None | None | None |
| 154 | 862096992088072192 | NaN | NaN | 2017-05-10 00:08:34 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please don't send perfectly... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/862096992... | 13 | 10 | None | None | None | None | None |
| 155 | 861769973181624320 | NaN | NaN | 2017-05-09 02:29:07 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: "Good afternoon class today we'... | 8.066291e+17 | 4.196984e+09 | 2016-12-07 22:38:52 +0000 | https://twitter.com/dog_rates/status/806629075... | 13 | 10 | None | None | None | None | None |
| 156 | 861383897657036800 | NaN | NaN | 2017-05-08 00:54:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hobbes. He's never seen bubbles before... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/861383897... | 13 | 10 | Hobbes | None | None | None | None |
| 157 | 861288531465048066 | NaN | NaN | 2017-05-07 18:36:02 +0000 | <a href="http://twitter.com/download/iphone" r... | HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/861288531... | 13 | 10 | None | None | None | None | None |
| 158 | 861005113778896900 | NaN | NaN | 2017-05-06 23:49:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Burt. He thinks your thesis statement ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/861005113... | 12 | 10 | Burt | None | None | None | None |
| 159 | 860981674716409858 | NaN | NaN | 2017-05-06 22:16:42 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Lorenzo. He's an avid nift... | 8.605638e+17 | 4.196984e+09 | 2017-05-05 18:36:06 +0000 | https://www.gofundme.com/help-lorenzo-beat-can... | 13 | 10 | Lorenzo | None | None | None | None |
| 160 | 860924035999428608 | NaN | NaN | 2017-05-06 18:27:40 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @tallylott: h*ckin adorable promposal. 13/1... | 8.609145e+17 | 3.638908e+08 | 2017-05-06 17:49:42 +0000 | https://twitter.com/tallylott/status/860914485... | 13 | 10 | None | None | None | None | None |
| 161 | 860563773140209665 | NaN | NaN | 2017-05-05 18:36:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lorenzo. He's an avid nifty hat wearer an... | NaN | NaN | NaN | https://www.gofundme.com/help-lorenzo-beat-can... | 13 | 10 | Lorenzo | None | None | None | None |
| 162 | 860524505164394496 | NaN | NaN | 2017-05-05 16:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Carl. He likes to dance. Doesn't care ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/860524505... | 13 | 10 | Carl | None | None | None | None |
| 163 | 860276583193509888 | NaN | NaN | 2017-05-04 23:34:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jordy. He likes to go on adventures an... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/860276583... | 12 | 10 | Jordy | None | None | None | None |
| 164 | 860184849394610176 | NaN | NaN | 2017-05-04 17:30:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have perhaps the wisest dog of all. Ab... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/860184849... | 14 | 10 | None | None | None | None | None |
| 165 | 860177593139703809 | NaN | NaN | 2017-05-04 17:01:34 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Ohboyohboyohboyohboyohboyohboyo... | 7.616730e+17 | 4.196984e+09 | 2016-08-05 21:19:27 +0000 | https://twitter.com/dog_rates/status/761672994... | 10 | 10 | None | None | None | None | None |
| 166 | 859924526012018688 | NaN | NaN | 2017-05-04 00:15:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Milky. She has no idea what happened. Jus... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859924526... | 12 | 10 | Milky | None | None | None | None |
| 167 | 859851578198683649 | NaN | NaN | 2017-05-03 19:26:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Trooper. He picks pup recyclables that ha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859851578... | 13 | 10 | Trooper | None | None | None | None |
| 168 | 859607811541651456 | NaN | NaN | 2017-05-03 03:17:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Sorry for the lack of posts today. I came home... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859607811... | 13 | 10 | None | None | None | None | puppo |
| 169 | 859196978902773760 | NaN | NaN | 2017-05-02 00:04:57 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. This is quite clearly a smo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859196978... | 12 | 10 | quite | None | None | None | None |
| 170 | 859074603037188101 | NaN | NaN | 2017-05-01 15:58:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have an exotic dog. Good at ukulele. F... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/859074603... | 13 | 10 | None | None | None | None | None |
| 171 | 858860390427611136 | NaN | NaN | 2017-05-01 01:47:28 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Winston. He knows he's a l... | 8.395493e+17 | 4.196984e+09 | 2017-03-08 18:52:12 +0000 | https://twitter.com/dog_rates/status/839549326... | 12 | 10 | Winston | None | None | None | None |
| 172 | 858843525470990336 | NaN | NaN | 2017-05-01 00:40:27 +0000 | <a href="http://twitter.com/download/iphone" r... | I have stumbled puppon a doggo painting party.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/858843525... | 13 | 10 | None | doggo | None | None | None |
| 173 | 858471635011153920 | NaN | NaN | 2017-04-30 00:02:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sophie. She just arrived. Used paworit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/858471635... | 13 | 10 | Sophie | None | None | None | None |
| 174 | 858107933456039936 | NaN | NaN | 2017-04-28 23:57:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wyatt. He had an interview earlier tod... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/858107933... | 12 | 10 | Wyatt | None | None | None | None |
| 175 | 857989990357356544 | NaN | NaN | 2017-04-28 16:08:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rosie. She was just informed of the wa... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857989990... | 12 | 10 | Rosie | None | None | None | None |
| 176 | 857746408056729600 | NaN | NaN | 2017-04-28 00:00:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Thor. He doesn't have finals because he's... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857746408... | 13 | 10 | Thor | None | None | None | None |
| 177 | 857393404942143489 | NaN | NaN | 2017-04-27 00:38:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Instead of the usual nightly dog rate, I'm sha... | NaN | NaN | NaN | https://www.gofundme.com/meeko-needs-heart-sur... | 13 | 10 | None | None | None | None | None |
| 178 | 857263160327368704 | NaN | NaN | 2017-04-26 16:00:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oscar and Oliver. Oliver shrunk Oscar.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857263160... | 13 | 10 | Oscar | None | None | None | None |
| 179 | 857214891891077121 | 8.571567e+17 | 1.806710e+08 | 2017-04-26 12:48:51 +0000 | <a href="http://twitter.com/download/iphone" r... | @Marc_IRL pixelated af 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 180 | 857062103051644929 | NaN | NaN | 2017-04-26 02:41:43 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @AaronChewning: First time wearing my @dog_... | 8.570611e+17 | 5.870972e+07 | 2017-04-26 02:37:47 +0000 | https://twitter.com/AaronChewning/status/85706... | 13 | 10 | None | None | None | None | None |
| 181 | 857029823797047296 | NaN | NaN | 2017-04-26 00:33:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zeke. He performs group cheeky wink tu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/857029823... | 12 | 10 | Zeke | None | None | None | None |
| 182 | 856602993587888130 | NaN | NaN | 2017-04-24 20:17:23 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Luna. It's her first ti... | 8.447048e+17 | 4.196984e+09 | 2017-03-23 00:18:10 +0000 | https://twitter.com/dog_rates/status/844704788... | 13 | 10 | Luna | None | None | None | None |
| 183 | 856543823941562368 | NaN | NaN | 2017-04-24 16:22:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Callie. She'll be your navigator today... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/856543823... | 12 | 10 | Callie | None | None | None | None |
| 184 | 856526610513747968 | 8.558181e+17 | 4.196984e+09 | 2017-04-24 15:13:52 +0000 | <a href="http://twitter.com/download/iphone" r... | THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/856526610... | 14 | 10 | None | None | None | None | None |
| 185 | 856330835276025856 | NaN | NaN | 2017-04-24 02:15:55 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @Jenna_Marbles: @dog_rates Thanks for ratin... | 8.563302e+17 | 6.669901e+07 | 2017-04-24 02:13:14 +0000 | NaN | 14 | 10 | None | None | None | None | None |
| 186 | 856288084350160898 | 8.562860e+17 | 2.792810e+08 | 2017-04-23 23:26:03 +0000 | <a href="http://twitter.com/download/iphone" r... | @xianmcguire @Jenna_Marbles Kardashians wouldn... | NaN | NaN | NaN | NaN | 14 | 10 | None | None | None | None | None |
| 187 | 856282028240666624 | NaN | NaN | 2017-04-23 23:01:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cermet, Paesh, and Morple. They are ab... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/856282028... | 14 | 10 | Cermet | None | None | None | None |
| 188 | 855862651834028034 | 8.558616e+17 | 1.943518e+08 | 2017-04-22 19:15:32 +0000 | <a href="http://twitter.com/download/iphone" r... | @dhmontgomery We also gave snoop dogg a 420/10... | NaN | NaN | NaN | NaN | 420 | 10 | None | None | None | None | None |
| 189 | 855860136149123072 | 8.558585e+17 | 1.361572e+07 | 2017-04-22 19:05:32 +0000 | <a href="http://twitter.com/download/iphone" r... | @s8n You tried very hard to portray this good ... | NaN | NaN | NaN | NaN | 666 | 10 | None | None | None | None | None |
| 190 | 855857698524602368 | NaN | NaN | 2017-04-22 18:55:51 +0000 | <a href="http://twitter.com/download/iphone" r... | HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS... | NaN | NaN | NaN | https://twitter.com/perfy/status/8558573181681... | 13 | 10 | None | None | None | None | None |
| 191 | 855851453814013952 | NaN | NaN | 2017-04-22 18:31:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a puppo participating in the #ScienceMa... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/855851453... | 13 | 10 | None | doggo | None | None | puppo |
| 192 | 855818117272018944 | NaN | NaN | 2017-04-22 16:18:34 +0000 | <a href="http://twitter.com/download/iphone" r... | I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUS... | NaN | NaN | NaN | https://twitter.com/markhalperin/status/855656... | 13 | 10 | None | None | None | None | None |
| 193 | 855459453768019968 | NaN | NaN | 2017-04-21 16:33:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys, we only rate dogs. This is quite clearly... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/855459453... | 12 | 10 | quite | None | None | None | None |
| 194 | 855245323840757760 | NaN | NaN | 2017-04-21 02:22:29 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet George. He looks slightly ... | 8.421635e+17 | 4.196984e+09 | 2017-03-16 00:00:07 +0000 | https://twitter.com/dog_rates/status/842163532... | 12 | 10 | George | None | None | None | None |
| 195 | 855138241867124737 | NaN | NaN | 2017-04-20 19:16:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @frasercampbell_: oh my... what's that... b... | 8.551225e+17 | 7.475543e+17 | 2017-04-20 18:14:33 +0000 | https://twitter.com/frasercampbell_/status/855... | 14 | 10 | None | None | None | None | None |
| 196 | 854732716440526848 | NaN | NaN | 2017-04-19 16:25:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Marlee. She fetched a flower and immed... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854732716... | 12 | 10 | Marlee | None | None | None | None |
| 197 | 854482394044301312 | NaN | NaN | 2017-04-18 23:50:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Arya. She can barely contain her excit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854482394... | 13 | 10 | Arya | None | None | None | None |
| 198 | 854365224396361728 | NaN | NaN | 2017-04-18 16:05:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Einstein. He's having a really good da... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854365224... | 13 | 10 | Einstein | None | None | None | None |
| 199 | 854120357044912130 | NaN | NaN | 2017-04-17 23:52:16 +0000 | <a href="http://twitter.com/download/iphone" r... | Sometimes you guys remind me just how impactfu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854120357... | 14 | 10 | None | None | None | pupper | None |
| 200 | 854010172552949760 | NaN | NaN | 2017-04-17 16:34:26 +0000 | <a href="http://twitter.com/download/iphone" r... | At first I thought this was a shy doggo, but i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/854010172... | 11 | 10 | None | doggo | floofer | None | None |
| 201 | 853760880890318849 | NaN | NaN | 2017-04-17 00:03:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Alice. I'm told she enjoys car ri... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/853760880... | 12 | 10 | Alice | None | None | None | None |
| 202 | 853639147608842240 | NaN | NaN | 2017-04-16 16:00:07 +0000 | <a href="http://twitter.com/download/iphone" r... | A photographer took pictures before and after ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/853639147... | 13 | 10 | None | None | None | None | None |
| 203 | 853299958564483072 | NaN | NaN | 2017-04-15 17:32:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rumpole. He'll be your Uber driver thi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/853299958... | 13 | 10 | Rumpole | None | None | None | None |
| 204 | 852936405516943360 | NaN | NaN | 2017-04-14 17:27:40 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I usually only share these on F... | 8.316501e+17 | 4.196984e+09 | 2017-02-14 23:43:18 +0000 | http://www.gofundme.com/bluethewhitehusky,http... | 13 | 10 | None | None | None | None | None |
| 205 | 852912242202992640 | NaN | NaN | 2017-04-14 15:51:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Benny. He likes being adorable and making... | NaN | NaN | NaN | https://www.gofundme.com/bennys-medical-bills,... | 12 | 10 | Benny | None | None | None | None |
| 206 | 852672615818899456 | NaN | NaN | 2017-04-13 23:59:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Aspen. She's never tasted a stick so s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852672615... | 12 | 10 | Aspen | None | None | None | None |
| 207 | 852553447878664193 | NaN | NaN | 2017-04-13 16:05:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jarod. He likes having his belly brush... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852553447... | 13 | 10 | Jarod | None | None | None | None |
| 208 | 852311364735569921 | NaN | NaN | 2017-04-13 00:03:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wiggles. She would like you to spot he... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852311364... | 13 | 10 | Wiggles | None | None | None | None |
| 209 | 852226086759018497 | NaN | NaN | 2017-04-12 18:25:07 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Meet General. He wasn't content with the quali... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852226086... | 14 | 10 | General | None | None | None | None |
| 210 | 852189679701164033 | NaN | NaN | 2017-04-12 16:00:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sailor. He has collected the best dirt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/852189679... | 12 | 10 | Sailor | None | None | None | None |
| 211 | 851953902622658560 | NaN | NaN | 2017-04-12 00:23:33 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Astrid. She's a guide d... | 8.293743e+17 | 4.196984e+09 | 2017-02-08 17:00:26 +0000 | https://twitter.com/dog_rates/status/829374341... | 13 | 10 | Astrid | doggo | None | None | None |
| 212 | 851861385021730816 | NaN | NaN | 2017-04-11 18:15:55 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @eddie_coe98: Thanks @dog_rates completed m... | 8.482894e+17 | 3.410211e+08 | 2017-04-01 21:42:03 +0000 | https://twitter.com/eddie_coe98/status/8482893... | 10 | 10 | None | None | None | None | None |
| 213 | 851591660324737024 | NaN | NaN | 2017-04-11 00:24:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh jeez u did me quite the spook little fella.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/851591660... | 11 | 10 | None | None | None | None | None |
| 214 | 851464819735769094 | NaN | NaN | 2017-04-10 16:00:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Iggy. He was a rescue dog killed in th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/851464819... | 14 | 10 | Iggy | None | None | None | None |
| 215 | 851224888060895234 | NaN | NaN | 2017-04-10 00:06:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Snoop. His number one passion is sticking... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/851224888... | 13 | 10 | Snoop | None | None | None | None |
| 216 | 850753642995093505 | NaN | NaN | 2017-04-08 16:54:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kyle. He made a joke about your shoes,... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850753642... | 11 | 10 | Kyle | None | None | None | None |
| 217 | 850380195714523136 | NaN | NaN | 2017-04-07 16:10:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leo. He's a personal triathlon coach. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850380195... | 13 | 10 | Leo | None | None | None | None |
| 218 | 850333567704068097 | 8.503288e+17 | 2.195506e+07 | 2017-04-07 13:04:55 +0000 | <a href="http://twitter.com/download/iphone" r... | @markhoppus MARK THAT DOG HAS SEEN AND EXPERIE... | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 219 | 850145622816686080 | NaN | NaN | 2017-04-07 00:38:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Riley. He's making new friends. Jubila... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850145622... | 11 | 10 | Riley | None | None | None | None |
| 220 | 850019790995546112 | NaN | NaN | 2017-04-06 16:18:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Boomer. He's a sandy pupper. Havi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/850019790... | 12 | 10 | Boomer | None | None | pupper | None |
| 221 | 849776966551130114 | NaN | NaN | 2017-04-06 00:13:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Seriously guys? Again? We only rate dogs. Plea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849776966... | 12 | 10 | None | None | None | None | None |
| 222 | 849668094696017920 | NaN | NaN | 2017-04-05 17:00:34 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Gidget. She's a spy pup... | 8.331247e+17 | 4.196984e+09 | 2017-02-19 01:23:00 +0000 | https://twitter.com/dog_rates/status/833124694... | 12 | 10 | Gidget | None | None | pupper | None |
| 223 | 849412302885593088 | NaN | NaN | 2017-04-05 00:04:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Noosh. He noticed you were in the show... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849412302... | 12 | 10 | Noosh | None | None | None | None |
| 224 | 849336543269576704 | NaN | NaN | 2017-04-04 19:03:06 +0000 | <a href="http://twitter.com/download/iphone" r... | At first I thought this was a dog because of t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849336543... | 11 | 10 | None | None | None | None | None |
| 225 | 849051919805034497 | NaN | NaN | 2017-04-04 00:12:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kevin. Kevin doesn't give a single h*c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/849051919... | 13 | 10 | Kevin | None | None | None | None |
| 226 | 848690551926992896 | NaN | NaN | 2017-04-03 00:16:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Please stop sending in animals other than dogs... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/848690551... | 12 | 10 | None | None | None | None | None |
| 227 | 848324959059550208 | NaN | NaN | 2017-04-02 00:03:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Odin. He's supposed to be giving directio... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/848324959... | 12 | 10 | Odin | None | None | None | None |
| 228 | 848213670039564288 | 8.482121e+17 | 4.196984e+09 | 2017-04-01 16:41:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Jerry just apuppologized to me. He said there ... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 229 | 848212111729840128 | NaN | NaN | 2017-04-01 16:35:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jerry. He's doing a distinguished tong... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/848212111... | 6 | 10 | Jerry | None | None | None | None |
| 230 | 847978865427394560 | NaN | NaN | 2017-04-01 01:08:10 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Charlie. He fell asleep... | 8.323699e+17 | 4.196984e+09 | 2017-02-16 23:23:38 +0000 | https://twitter.com/dog_rates/status/832369877... | 11 | 10 | Charlie | None | None | None | None |
| 231 | 847971574464610304 | NaN | NaN | 2017-04-01 00:39:12 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @basic_vacek_: I love my new mug easy 13/10... | 8.479710e+17 | 5.970642e+08 | 2017-04-01 00:36:55 +0000 | https://twitter.com/basic_vacek_/status/847971... | 13 | 10 | None | None | None | None | None |
| 232 | 847962785489326080 | NaN | NaN | 2017-04-01 00:04:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Georgie. He's very shy. Only puppears ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847962785... | 10 | 10 | Georgie | None | None | None | None |
| 233 | 847842811428974592 | NaN | NaN | 2017-03-31 16:07:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rontu. He is described as a pal, cuddl... | NaN | NaN | NaN | https://www.gofundme.com/help-save-rontu,https... | 12 | 10 | Rontu | None | None | None | None |
| 234 | 847617282490613760 | 8.476062e+17 | 4.196984e+09 | 2017-03-31 01:11:22 +0000 | <a href="http://twitter.com/download/iphone" r... | .@breaannanicolee PUPDATE: Cannon has a heart ... | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 235 | 847606175596138505 | NaN | NaN | 2017-03-31 00:27:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cannon. He just heard something behind... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847606175... | 12 | 10 | Cannon | None | None | None | None |
| 236 | 847251039262605312 | NaN | NaN | 2017-03-30 00:56:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Furzey. He's doing an elevated sandy z... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847251039... | 12 | 10 | Furzey | None | None | None | None |
| 237 | 847157206088847362 | NaN | NaN | 2017-03-29 18:43:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Daisy. She's been pup for adoption for mo... | NaN | NaN | NaN | https://www.petfinder.com/petdetail/37334596,h... | 11 | 10 | Daisy | None | None | None | None |
| 238 | 847116187444137987 | NaN | NaN | 2017-03-29 16:00:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Unbelievable... We. Only. Rate. Dogs. Please s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/847116187... | 11 | 10 | None | None | None | None | None |
| 239 | 846874817362120707 | NaN | NaN | 2017-03-29 00:01:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tuck. As you can see, he's rather h*ck... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846874817... | 13 | 10 | Tuck | None | None | None | None |
| 240 | 846514051647705089 | NaN | NaN | 2017-03-28 00:07:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Barney. He's an elder doggo. Hitches a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846514051... | 13 | 10 | Barney | doggo | None | None | None |
| 241 | 846505985330044928 | NaN | NaN | 2017-03-27 23:35:28 +0000 | <a href="http://twitter.com/download/iphone" r... | THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 S... | NaN | NaN | NaN | https://twitter.com/shomaristone/status/846484... | 11 | 10 | None | None | None | None | None |
| 242 | 846153765933735936 | NaN | NaN | 2017-03-27 00:15:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Vixen. He really likes bananas. Steals... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846153765... | 13 | 10 | Vixen | None | None | None | None |
| 243 | 846139713627017216 | NaN | NaN | 2017-03-26 23:20:02 +0000 | <a href="http://twitter.com/download/iphone" r... | SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON TH... | NaN | NaN | NaN | https://twitter.com/csncapitals/status/8460884... | 13 | 10 | None | None | None | None | None |
| 244 | 846042936437604353 | NaN | NaN | 2017-03-26 16:55:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jarvis. The snow pupsets him. Officially ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/846042936... | 12 | 10 | Jarvis | None | None | None | None |
| 245 | 845812042753855489 | NaN | NaN | 2017-03-26 01:38:00 +0000 | <a href="http://twitter.com/download/iphone" r... | We usually don't rate polar bears but this one... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/845812042... | 13 | 10 | None | None | None | None | None |
| 246 | 845677943972139009 | NaN | NaN | 2017-03-25 16:45:08 +0000 | <a href="http://twitter.com/download/iphone" r... | C'mon guys. Please only send in dogs. We only ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/845677943... | 12 | 10 | None | None | None | None | None |
| 247 | 845459076796616705 | NaN | NaN | 2017-03-25 02:15:26 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Here's a heartwarming scene of ... | 7.562885e+17 | 4.196984e+09 | 2016-07-22 00:43:32 +0000 | https://twitter.com/dog_rates/status/756288534... | 12 | 10 | None | None | None | None | None |
| 248 | 845397057150107648 | NaN | NaN | 2017-03-24 22:08:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Mimosa. She's an emotional suppor... | NaN | NaN | NaN | https://www.gofundme.com/help-save-a-pup,https... | 13 | 10 | Mimosa | doggo | None | None | None |
| 249 | 845306882940190720 | NaN | NaN | 2017-03-24 16:10:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pickles. She's a silly pupper. Thinks ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/845306882... | 12 | 10 | Pickles | None | None | pupper | None |
| 250 | 845098359547420673 | NaN | NaN | 2017-03-24 02:22:04 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bungalo. She uses that ... | 7.733088e+17 | 4.196984e+09 | 2016-09-06 23:56:05 +0000 | https://twitter.com/dog_rates/status/773308824... | 12 | 10 | Bungalo | None | None | None | None |
| 251 | 844979544864018432 | 7.590995e+17 | 4.196984e+09 | 2017-03-23 18:29:57 +0000 | <a href="http://twitter.com/download/iphone" r... | PUPDATE: I'm proud to announce that Toby is 23... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844979544... | 13 | 10 | None | None | None | None | None |
| 252 | 844973813909606400 | NaN | NaN | 2017-03-23 18:07:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brady. He's a recovering alcoholic. De... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844973813... | 12 | 10 | Brady | None | None | None | None |
| 253 | 844704788403113984 | NaN | NaN | 2017-03-23 00:18:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Luna. It's her first time outside and ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844704788... | 13 | 10 | Luna | None | None | None | None |
| 254 | 844580511645339650 | NaN | NaN | 2017-03-22 16:04:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He wants to know if you have ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844580511... | 11 | 10 | Charlie | None | None | None | None |
| 255 | 844223788422217728 | NaN | NaN | 2017-03-21 16:26:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Margo. She just dug pup a massive hole... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/844223788... | 12 | 10 | Margo | None | None | None | None |
| 256 | 843981021012017153 | NaN | NaN | 2017-03-21 00:22:10 +0000 | <a href="http://twitter.com/download/iphone" r... | HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/... | NaN | NaN | NaN | https://twitter.com/brianstack153/status/79679... | 13 | 10 | None | None | None | None | None |
| 257 | 843856843873095681 | NaN | NaN | 2017-03-20 16:08:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Sadie and Daisy. They do all thei... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/843856843... | 12 | 10 | Sadie | None | None | None | None |
| 258 | 843604394117681152 | NaN | NaN | 2017-03-19 23:25:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hank. He's been outside for 3 minutes ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/843604394... | 11 | 10 | Hank | None | None | None | None |
| 259 | 843235543001513987 | NaN | NaN | 2017-03-18 22:59:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tycho. She just had new wheels install... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/843235543... | 13 | 10 | Tycho | None | None | None | None |
| 260 | 842892208864923648 | NaN | NaN | 2017-03-18 00:15:37 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Stephan. He just wants ... | 8.071068e+17 | 4.196984e+09 | 2016-12-09 06:17:20 +0000 | https://twitter.com/dog_rates/status/807106840... | 13 | 10 | Stephan | None | None | None | None |
| 261 | 842846295480000512 | NaN | NaN | 2017-03-17 21:13:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He's wishing you a very fun a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842846295... | 13 | 10 | Charlie | None | None | None | None |
| 262 | 842765311967449089 | NaN | NaN | 2017-03-17 15:51:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Indie. She's not a fan of baths but she's... | NaN | NaN | NaN | https://www.gofundme.com/get-indie-home/,https... | 12 | 10 | Indie | None | None | None | None |
| 263 | 842535590457499648 | NaN | NaN | 2017-03-17 00:38:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Winnie. She lost her body saving a chi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842535590... | 13 | 10 | Winnie | None | None | None | None |
| 264 | 842163532590374912 | NaN | NaN | 2017-03-16 00:00:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet George. He looks slightly deflated but ov... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842163532... | 12 | 10 | George | None | None | None | None |
| 265 | 842115215311396866 | NaN | NaN | 2017-03-15 20:48:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bentley. It's his first time going to ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/842115215... | 12 | 10 | Bentley | None | None | None | None |
| 266 | 841833993020538882 | NaN | NaN | 2017-03-15 02:10:39 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Ken. His cheeks are mag... | 8.174239e+17 | 4.196984e+09 | 2017-01-06 17:33:29 +0000 | https://twitter.com/dog_rates/status/817423860... | 13 | 10 | Ken | None | None | None | None |
| 267 | 841680585030541313 | NaN | NaN | 2017-03-14 16:01:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She's a dragon slayer. Feared b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841680585... | 12 | 10 | Penny | None | None | None | None |
| 268 | 841439858740625411 | NaN | NaN | 2017-03-14 00:04:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have some incredible doggos for #K9Vet... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841439858... | 14 | 10 | None | None | None | None | None |
| 269 | 841320156043304961 | NaN | NaN | 2017-03-13 16:08:50 +0000 | <a href="http://twitter.com/download/iphone" r... | We don't rate penguins, but if we did, this on... | NaN | NaN | NaN | https://twitter.com/abc/status/841311395547250688 | 12 | 10 | None | None | None | None | None |
| 270 | 841314665196081154 | NaN | NaN | 2017-03-13 15:47:01 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Max. There's no way in h*ck you're tak... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841314665... | 13 | 10 | Max | None | None | None | None |
| 271 | 841077006473256960 | NaN | NaN | 2017-03-13 00:02:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dawn. She's just checking pup on you. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/841077006... | 12 | 10 | Dawn | None | None | None | None |
| 272 | 840761248237133825 | NaN | NaN | 2017-03-12 03:07:56 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to Maddie and Gunner.... | 8.406323e+17 | 4.196984e+09 | 2017-03-11 18:35:42 +0000 | https://www.gofundme.com/3hgsuu0,https://twitt... | 12 | 10 | Maddie | None | None | None | None |
| 273 | 840728873075638272 | NaN | NaN | 2017-03-12 00:59:17 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Pipsy. He is a fluffbal... | 6.671522e+17 | 4.196984e+09 | 2015-11-19 01:27:25 +0000 | https://twitter.com/dog_rates/status/667152164... | 12 | 10 | Pipsy | None | None | None | None |
| 274 | 840698636975636481 | 8.406983e+17 | 8.405479e+17 | 2017-03-11 22:59:09 +0000 | <a href="http://twitter.com/download/iphone" r... | @0_kelvin_0 >10/10 is reserved for puppos s... | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 275 | 840696689258311684 | NaN | NaN | 2017-03-11 22:51:24 +0000 | <a href="http://twitter.com/download/iphone" r... | I didn't even have to intervene. Took him 4 mi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/840696689... | 10 | 10 | None | None | None | None | None |
| 276 | 840632337062862849 | NaN | NaN | 2017-03-11 18:35:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Maddie and Gunner. They are consi... | NaN | NaN | NaN | https://www.gofundme.com/3hgsuu0,https://twitt... | 12 | 10 | Maddie | None | None | None | None |
| 277 | 840370681858686976 | NaN | NaN | 2017-03-11 01:15:58 +0000 | <a href="http://twitter.com/download/iphone" r... | You have been visited by the magical sugar jar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/840370681... | 13 | 10 | None | None | None | None | None |
| 278 | 840268004936019968 | NaN | NaN | 2017-03-10 18:27:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Monty. He makes instantly regrettable ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/840268004... | 12 | 10 | Monty | None | None | None | None |
| 279 | 839990271299457024 | NaN | NaN | 2017-03-10 00:04:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sojourner. His nose is a Fibonacci Spiral... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/839990271... | 13 | 10 | Sojourner | None | None | None | None |
| 280 | 839549326359670784 | NaN | NaN | 2017-03-08 18:52:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Winston. He knows he's a little too big f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/839549326... | 12 | 10 | Winston | None | None | None | None |
| 281 | 839290600511926273 | NaN | NaN | 2017-03-08 01:44:07 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... | 8.392899e+17 | 4.119842e+07 | 2017-03-08 01:41:24 +0000 | https://twitter.com/alexmartindawg/status/8392... | 10 | 10 | None | None | None | pupper | None |
| 282 | 839239871831150596 | NaN | NaN | 2017-03-07 22:22:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Odie. He's big. 13/10 would attempt to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/839239871... | 13 | 10 | Odie | None | None | None | None |
| 283 | 838952994649550848 | NaN | NaN | 2017-03-07 03:22:35 +0000 | <a href="http://twitter.com/download/iphone" r... | SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN... | NaN | NaN | NaN | https://twitter.com/ktla/status/83894871422799... | 13 | 10 | None | None | None | None | None |
| 284 | 838921590096166913 | NaN | NaN | 2017-03-07 01:17:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Arlo. He's officially the king of snow... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838921590... | 13 | 10 | Arlo | None | None | None | None |
| 285 | 838916489579200512 | NaN | NaN | 2017-03-07 00:57:32 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @KibaDva: I collected all the good dogs!! 1... | 8.389060e+17 | 8.117408e+08 | 2017-03-07 00:15:46 +0000 | https://twitter.com/KibaDva/status/83890598062... | 15 | 10 | None | None | None | None | None |
| 286 | 838831947270979586 | NaN | NaN | 2017-03-06 19:21:35 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Riley. His owner put a ... | 7.838400e+17 | 4.196984e+09 | 2016-10-06 01:23:05 +0000 | https://twitter.com/dog_rates/status/783839966... | 13 | 10 | Riley | None | None | None | None |
| 287 | 838561493054533637 | NaN | NaN | 2017-03-06 01:26:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Walter. His owner has been watching al... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838561493... | 13 | 10 | Walter | None | None | None | None |
| 288 | 838476387338051585 | NaN | NaN | 2017-03-05 19:48:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stanley. Somehow he heard you tell him... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838476387... | 13 | 10 | Stanley | None | None | None | None |
| 289 | 838201503651401729 | NaN | NaN | 2017-03-05 01:36:26 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Sunny. He can take down a ... | 8.207497e+17 | 4.196984e+09 | 2017-01-15 21:49:15 +0000 | https://twitter.com/dog_rates/status/820749716... | 13 | 10 | Sunny | None | None | None | None |
| 290 | 838150277551247360 | 8.381455e+17 | 2.195506e+07 | 2017-03-04 22:12:52 +0000 | <a href="http://twitter.com/download/iphone" r... | @markhoppus 182/10 | NaN | NaN | NaN | NaN | 182 | 10 | None | None | None | None | None |
| 291 | 838085839343206401 | 8.380855e+17 | 2.894131e+09 | 2017-03-04 17:56:49 +0000 | <a href="http://twitter.com/download/iphone" r... | @bragg6of8 @Andy_Pace_ we are still looking fo... | NaN | NaN | NaN | NaN | 15 | 10 | None | None | None | None | None |
| 292 | 838083903487373313 | NaN | NaN | 2017-03-04 17:49:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Daisy. She's puppears to be rare as al... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/838083903... | 13 | 10 | Daisy | None | None | None | None |
| 293 | 837820167694528512 | NaN | NaN | 2017-03-04 00:21:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper before and after being asked "... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837820167... | 12 | 10 | None | None | None | pupper | None |
| 294 | 837482249356513284 | NaN | NaN | 2017-03-03 01:58:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Waffles. He's a ship captain in real l... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837482249... | 13 | 10 | Waffles | None | None | None | None |
| 295 | 837471256429613056 | NaN | NaN | 2017-03-03 01:14:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Vincent. He's suave as h*ck. Will be y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837471256... | 12 | 10 | Vincent | None | None | None | None |
| 296 | 837366284874571778 | NaN | NaN | 2017-03-02 18:17:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She has a portrait of herself on... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837366284... | 13 | 10 | Lucy | None | None | None | None |
| 297 | 837110210464448512 | NaN | NaN | 2017-03-02 01:20:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clark. He passed pupper training today... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/837110210... | 13 | 10 | Clark | None | None | pupper | None |
| 298 | 837012587749474308 | NaN | NaN | 2017-03-01 18:52:06 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... | 8.370113e+17 | 7.266347e+08 | 2017-03-01 18:47:10 +0000 | https://twitter.com/KennyFromDaBlok/status/837... | 14 | 10 | None | None | None | None | None |
| 299 | 836989968035819520 | NaN | NaN | 2017-03-01 17:22:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mookie. He really enjoys shopping but ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836989968... | 12 | 10 | Mookie | None | None | None | None |
| 300 | 836753516572119041 | NaN | NaN | 2017-03-01 01:42:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Meera. She just heard about taxes and ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836753516... | 12 | 10 | Meera | doggo | None | None | None |
| 301 | 836677758902222849 | NaN | NaN | 2017-02-28 20:41:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Oliver. He's pretty exotic. Fairl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836677758... | 11 | 10 | Oliver | None | None | None | None |
| 302 | 836648853927522308 | NaN | NaN | 2017-02-28 18:46:45 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @SchafeBacon2016: @dog_rates Slightly distu... | 8.366481e+17 | 7.124572e+17 | 2017-02-28 18:43:57 +0000 | https://twitter.com/SchafeBacon2016/status/836... | 11 | 10 | None | None | None | None | None |
| 303 | 836397794269200385 | NaN | NaN | 2017-02-28 02:09:08 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Buddy. He ran into a gl... | 8.178278e+17 | 4.196984e+09 | 2017-01-07 20:18:46 +0000 | https://twitter.com/dog_rates/status/817827839... | 13 | 10 | Buddy | None | None | None | None |
| 304 | 836380477523124226 | NaN | NaN | 2017-02-28 01:00:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ava. She just blasted off. Streamline ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836380477... | 12 | 10 | Ava | None | None | pupper | None |
| 305 | 836260088725786625 | NaN | NaN | 2017-02-27 17:01:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She spent all morning overseeing... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836260088... | 13 | 10 | Lucy | None | None | None | None |
| 306 | 836001077879255040 | NaN | NaN | 2017-02-26 23:52:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Atlas is back and this time he's prettier than... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/836001077... | 13 | 10 | None | None | None | None | None |
| 307 | 835685285446955009 | NaN | NaN | 2017-02-26 02:57:52 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Rory. He's got an inter... | 7.869631e+17 | 4.196984e+09 | 2016-10-14 16:13:10 +0000 | https://twitter.com/dog_rates/status/786963064... | 12 | 10 | Rory | None | None | None | None |
| 308 | 835574547218894849 | NaN | NaN | 2017-02-25 19:37:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Eli. He works backstage at Bone Jovi c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835574547... | 11 | 10 | Eli | None | None | None | None |
| 309 | 835536468978302976 | NaN | NaN | 2017-02-25 17:06:32 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Lola. Her hobbies include ... | 8.352641e+17 | 4.196984e+09 | 2017-02-24 23:04:14 +0000 | https://www.gofundme.com/lolas-life-saving-sur... | 12 | 10 | Lola | None | None | None | None |
| 310 | 835309094223372289 | NaN | NaN | 2017-02-25 02:03:02 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: So this just changed my life. 1... | 7.530398e+17 | 4.196984e+09 | 2016-07-13 01:34:21 +0000 | https://vine.co/v/5W2Dg3XPX7a,https://vine.co/... | 13 | 10 | None | None | None | None | None |
| 311 | 835297930240217089 | NaN | NaN | 2017-02-25 01:18:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Ash. He's a Benebop Cumberplop. Quite rar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835297930... | 12 | 10 | Ash | None | None | None | None |
| 312 | 835264098648616962 | NaN | NaN | 2017-02-24 23:04:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lola. Her hobbies include being precious ... | NaN | NaN | NaN | https://www.gofundme.com/lolas-life-saving-sur... | 12 | 10 | Lola | None | None | None | None |
| 313 | 835246439529840640 | 8.352460e+17 | 2.625958e+07 | 2017-02-24 21:54:03 +0000 | <a href="http://twitter.com/download/iphone" r... | @jonnysun @Lin_Manuel ok jomny I know you're e... | NaN | NaN | NaN | NaN | 960 | 0 | None | None | None | None | None |
| 314 | 835172783151792128 | NaN | NaN | 2017-02-24 17:01:22 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please don't send in any no... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835172783... | 12 | 10 | None | None | None | None | None |
| 315 | 835152434251116546 | NaN | NaN | 2017-02-24 15:40:31 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're so blinded by your systematic plag... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/835152434... | 0 | 10 | None | None | None | None | None |
| 316 | 834931633769889797 | NaN | NaN | 2017-02-24 01:03:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He decided it was time to part... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834931633... | 12 | 10 | Tucker | None | None | None | None |
| 317 | 834786237630337024 | NaN | NaN | 2017-02-23 15:25:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tobi. She is properly fetching her sho... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834786237... | 13 | 10 | Tobi | None | None | None | None |
| 318 | 834574053763584002 | NaN | NaN | 2017-02-23 01:22:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo fully pupared for a shower. H*c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834574053... | 13 | 10 | None | doggo | None | None | None |
| 319 | 834477809192075265 | NaN | NaN | 2017-02-22 18:59:48 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Leo. He was a skater pu... | 8.295020e+17 | 4.196984e+09 | 2017-02-09 01:27:41 +0000 | https://twitter.com/dog_rates/status/829501995... | 12 | 10 | Leo | None | None | None | None |
| 320 | 834458053273591808 | NaN | NaN | 2017-02-22 17:41:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Chester (bottom) & Harold (top). They... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834458053... | 12 | 10 | Chester | None | None | None | None |
| 321 | 834209720923721728 | NaN | NaN | 2017-02-22 01:14:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wilson. He's aware that he has somethi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834209720... | 12 | 10 | Wilson | None | None | None | None |
| 322 | 834167344700198914 | NaN | NaN | 2017-02-21 22:26:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sunshine. She doesn't believe in perso... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834167344... | 11 | 10 | Sunshine | None | None | None | None |
| 323 | 834089966724603904 | NaN | NaN | 2017-02-21 17:18:39 +0000 | <a href="http://twitter.com/download/iphone" r... | DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE... | NaN | NaN | NaN | https://twitter.com/stevekopack/status/8340866... | 10 | 10 | None | doggo | None | None | None |
| 324 | 834086379323871233 | NaN | NaN | 2017-02-21 17:04:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lipton. He's a West Romanian Snuggle P... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/834086379... | 12 | 10 | Lipton | None | None | None | None |
| 325 | 833863086058651648 | NaN | NaN | 2017-02-21 02:17:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bentley. Hairbrushes are his favorite ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833863086... | 12 | 10 | Bentley | None | None | None | None |
| 326 | 833826103416520705 | NaN | NaN | 2017-02-20 23:50:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Charlie. She asked u to change the channe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833826103... | 13 | 10 | Charlie | None | None | None | None |
| 327 | 833732339549220864 | NaN | NaN | 2017-02-20 17:37:34 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @rolltidered: This is Gabby. Now requests t... | 8.324344e+17 | 4.466750e+07 | 2017-02-17 03:39:51 +0000 | https://twitter.com/rolltidered/status/8324343... | 12 | 10 | Gabby | None | None | None | None |
| 328 | 833722901757046785 | NaN | NaN | 2017-02-20 17:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bronte. She's fairly h*ckin aerodynami... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833722901... | 13 | 10 | Bronte | None | None | None | None |
| 329 | 833479644947025920 | NaN | NaN | 2017-02-20 00:53:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Poppy. She just arrived. 13/10 would s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833479644... | 13 | 10 | Poppy | None | None | None | None |
| 330 | 833124694597443584 | NaN | NaN | 2017-02-19 01:23:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gidget. She's a spy pupper. Stealthy a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/833124694... | 12 | 10 | Gidget | None | None | pupper | None |
| 331 | 832998151111966721 | NaN | NaN | 2017-02-18 17:00:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rhino. He arrived at a shelter with an... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832998151... | 13 | 10 | Rhino | doggo | None | None | None |
| 332 | 832769181346996225 | NaN | NaN | 2017-02-18 01:50:19 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @EmilieGambril: 12/10 h*cking excited about... | 8.327664e+17 | 4.871977e+08 | 2017-02-18 01:39:12 +0000 | https://twitter.com/EmilieGambril/status/83276... | 12 | 10 | None | None | None | None | None |
| 333 | 832757312314028032 | NaN | NaN | 2017-02-18 01:03:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Willow. She's the official strawberry ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832757312... | 13 | 10 | Willow | None | None | None | None |
| 334 | 832682457690300417 | NaN | NaN | 2017-02-17 20:05:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Prosperous good boy 13/10 socioeconomic af htt... | NaN | NaN | NaN | https://twitter.com/telegraph/status/832268302... | 13 | 10 | None | None | None | None | None |
| 335 | 832645525019123713 | NaN | NaN | 2017-02-17 17:38:57 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | There's going to be a dog terminal at JFK Airp... | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/02/jfk-an... | 10 | 10 | not | None | None | None | None |
| 336 | 832636094638288896 | NaN | NaN | 2017-02-17 17:01:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Orion. He just got back from the denti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832636094... | 12 | 10 | Orion | None | None | None | None |
| 337 | 832397543355072512 | NaN | NaN | 2017-02-17 01:13:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Eevee. She wants to see how you're doi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832397543... | 12 | 10 | Eevee | None | None | None | None |
| 338 | 832369877331693569 | NaN | NaN | 2017-02-16 23:23:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He fell asleep on a heating v... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832369877... | 11 | 10 | Charlie | None | None | None | None |
| 339 | 832273440279240704 | NaN | NaN | 2017-02-16 17:00:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Smiley. He's a blind therapy dogg... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/832273440... | 14 | 10 | Smiley | doggo | None | None | None |
| 340 | 832215909146226688 | NaN | NaN | 2017-02-16 13:11:49 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Logan, the Chow who liv... | 7.867091e+17 | 4.196984e+09 | 2016-10-13 23:23:56 +0000 | https://twitter.com/dog_rates/status/786709082... | 75 | 10 | Logan | None | None | None | None |
| 341 | 832215726631055365 | NaN | NaN | 2017-02-16 13:11:05 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Moreton. He's the Good ... | 7.932865e+17 | 4.196984e+09 | 2016-11-01 03:00:09 +0000 | https://twitter.com/dog_rates/status/793286476... | 13 | 10 | Moreton | None | None | None | None |
| 342 | 832088576586297345 | 8.320875e+17 | 3.058208e+07 | 2017-02-16 04:45:50 +0000 | <a href="http://twitter.com/download/iphone" r... | @docmisterio account started on 11/15/15 | NaN | NaN | NaN | NaN | 11 | 15 | None | None | None | None | None |
| 343 | 832040443403784192 | NaN | NaN | 2017-02-16 01:34:34 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Klein. These pics were ... | 7.699404e+17 | 4.196984e+09 | 2016-08-28 16:51:16 +0000 | https://twitter.com/dog_rates/status/769940425... | 12 | 10 | Klein | None | None | None | None |
| 344 | 832032802820481025 | NaN | NaN | 2017-02-16 01:04:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Miguel. He was the only remaining dogg... | NaN | NaN | NaN | https://www.petfinder.com/petdetail/34918210,h... | 12 | 10 | Miguel | doggo | None | None | None |
| 345 | 831939777352105988 | NaN | NaN | 2017-02-15 18:54:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Emanuel. He's a h*ckin rare doggo. Dwe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831939777... | 12 | 10 | Emanuel | doggo | None | None | None |
| 346 | 831926988323639298 | 8.319030e+17 | 2.068372e+07 | 2017-02-15 18:03:45 +0000 | <a href="http://twitter.com/download/iphone" r... | @UNC can confirm 12/10 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 347 | 831911600680497154 | NaN | NaN | 2017-02-15 17:02:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Kuyu. He was trapped in a well for 10 day... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831911600... | 14 | 10 | Kuyu | None | None | None | None |
| 348 | 831670449226514432 | NaN | NaN | 2017-02-15 01:04:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Daisy. She has a heart on her butt. 13... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831670449... | 13 | 10 | Daisy | None | None | None | None |
| 349 | 831650051525054464 | NaN | NaN | 2017-02-14 23:43:18 +0000 | <a href="http://twitter.com/download/iphone" r... | I usually only share these on Friday's, but th... | NaN | NaN | NaN | http://www.gofundme.com/bluethewhitehusky,http... | 13 | 10 | None | None | None | None | None |
| 350 | 831552930092285952 | NaN | NaN | 2017-02-14 17:17:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dutch. He dressed up as his favorite e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831552930... | 13 | 10 | Dutch | None | None | None | None |
| 351 | 831322785565769729 | NaN | NaN | 2017-02-14 02:02:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pete. He has no eyes. Needs a guide do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831322785... | 12 | 10 | Pete | doggo | None | None | None |
| 352 | 831315979191906304 | NaN | NaN | 2017-02-14 01:35:49 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | I couldn't make it to the #WKCDogShow BUT I ha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831315979... | 13 | 10 | None | None | None | pupper | None |
| 353 | 831309418084069378 | NaN | NaN | 2017-02-14 01:09:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scooter and his son Montoya. Scooter ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831309418... | 12 | 10 | Scooter | None | None | None | None |
| 354 | 831262627380748289 | NaN | NaN | 2017-02-13 22:03:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He's feeling h*ckin festive an... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/831262627... | 12 | 10 | Tucker | None | None | None | None |
| 355 | 830956169170665475 | NaN | NaN | 2017-02-13 01:46:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Reggie. He hates puns. 12/10 ligh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/830956169... | 12 | 10 | Reggie | None | None | None | None |
| 356 | 830583320585068544 | NaN | NaN | 2017-02-12 01:04:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lilly. She just parallel barked. Kindl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/830583320... | 13 | 10 | Lilly | None | None | None | None |
| 357 | 830173239259324417 | NaN | NaN | 2017-02-10 21:54:58 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Kyro. He's a Stratocumu... | 8.092201e+17 | 4.196984e+09 | 2016-12-15 02:14:29 +0000 | https://twitter.com/dog_rates/status/809220051... | 12 | 10 | Kyro | None | None | None | None |
| 358 | 830097400375152640 | NaN | NaN | 2017-02-10 16:53:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Samson. He's absolute fluffy perfection. ... | NaN | NaN | NaN | https://www.gofundme.com/sick-baby-samson,http... | 13 | 10 | Samson | None | None | None | None |
| 359 | 829878982036299777 | NaN | NaN | 2017-02-10 02:25:42 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Loki. He smiles like El... | 8.269587e+17 | 4.196984e+09 | 2017-02-02 01:01:21 +0000 | https://twitter.com/dog_rates/status/826958653... | 12 | 10 | Loki | doggo | None | None | None |
| 360 | 829861396166877184 | NaN | NaN | 2017-02-10 01:15:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mia. She already knows she's a good do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829861396... | 12 | 10 | Mia | None | None | None | None |
| 361 | 829501995190984704 | NaN | NaN | 2017-02-09 01:27:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leo. He was a skater pup. She said see... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829501995... | 12 | 10 | Leo | None | None | None | None |
| 362 | 829449946868879360 | NaN | NaN | 2017-02-08 22:00:52 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a stressed doggo. Had a long day. Many ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829449946... | 11 | 10 | None | doggo | None | None | None |
| 363 | 829374341691346946 | NaN | NaN | 2017-02-08 17:00:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Astrid. She's a guide doggo in trainin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829374341... | 13 | 10 | Astrid | doggo | None | None | None |
| 364 | 829141528400556032 | NaN | NaN | 2017-02-08 01:35:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Malcolm. He goes from sneaky tongue sl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829141528... | 12 | 10 | Malcolm | None | None | None | None |
| 365 | 829011960981237760 | NaN | NaN | 2017-02-07 17:00:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dexter. He was reunited with his mom y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/829011960... | 13 | 10 | Dexter | None | None | None | None |
| 366 | 828801551087042563 | NaN | NaN | 2017-02-07 03:04:22 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Gus. He likes to be clo... | 8.102541e+17 | 4.196984e+09 | 2016-12-17 22:43:27 +0000 | https://twitter.com/dog_rates/status/810254108... | 12 | 10 | Gus | None | None | None | None |
| 367 | 828770345708580865 | NaN | NaN | 2017-02-07 01:00:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alfie. He's your Lyft for tonight. Kin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828770345... | 13 | 10 | Alfie | None | None | None | None |
| 368 | 828708714936930305 | NaN | NaN | 2017-02-06 20:55:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fiona. She's an exotic dog. Seems rath... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828708714... | 10 | 10 | Fiona | None | None | None | None |
| 369 | 828650029636317184 | NaN | NaN | 2017-02-06 17:02:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Occasionally, we're sent fantastic stories. Th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828650029... | 14 | 10 | one | None | None | None | None |
| 370 | 828409743546925057 | NaN | NaN | 2017-02-06 01:07:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mutt Ryan. He's quite confident at the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828409743... | 12 | 10 | Mutt | None | None | None | None |
| 371 | 828408677031882754 | NaN | NaN | 2017-02-06 01:03:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bear. He went outside to play in the s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828408677... | 12 | 10 | Bear | None | None | None | None |
| 372 | 828381636999917570 | NaN | NaN | 2017-02-05 23:15:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Doobert. He's a deaf doggo. Didn't stop h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828381636... | 14 | 10 | Doobert | doggo | None | None | None |
| 373 | 828376505180889089 | NaN | NaN | 2017-02-05 22:55:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Beebop. Her name means "Good Dog" in r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828376505... | 13 | 10 | Beebop | None | None | None | None |
| 374 | 828372645993398273 | NaN | NaN | 2017-02-05 22:40:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alexander Hamilpup. He was one of the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828372645... | 12 | 10 | Alexander | None | None | None | None |
| 375 | 828361771580813312 | NaN | NaN | 2017-02-05 21:56:51 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Beebop and Doobert should start a band 12/10 w... | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 376 | 828046555563323392 | NaN | NaN | 2017-02-05 01:04:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sailer. He waits on the roof for his o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828046555... | 13 | 10 | Sailer | None | None | None | None |
| 377 | 828011680017821696 | NaN | NaN | 2017-02-04 22:45:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Brutus and Jersey. They think the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/828011680... | 11 | 10 | Brutus | None | None | None | None |
| 378 | 827933404142436356 | NaN | NaN | 2017-02-04 17:34:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kona. Yesterday she stopped by the dep... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827933404... | 12 | 10 | Kona | None | None | pupper | None |
| 379 | 827653905312006145 | NaN | NaN | 2017-02-03 23:04:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Boots. She doesn't know what to do wit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827653905... | 12 | 10 | Boots | None | None | None | None |
| 380 | 827600520311402496 | NaN | NaN | 2017-02-03 19:31:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Tucker. It's his birthday. He's pupset wi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827600520... | 13 | 10 | Tucker | None | None | None | None |
| 381 | 827324948884643840 | NaN | NaN | 2017-02-03 01:16:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ralphie. He's being treated for an ove... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827324948... | 12 | 10 | Ralphie | None | None | None | None |
| 382 | 827228250799742977 | NaN | NaN | 2017-02-02 18:52:38 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Phil. He's an important... | 6.946697e+17 | 4.196984e+09 | 2016-02-02 23:52:22 +0000 | https://twitter.com/dog_rates/status/694669722... | 12 | 10 | Phil | None | None | None | None |
| 383 | 827199976799354881 | NaN | NaN | 2017-02-02 17:00:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He wins every game of chess h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/827199976... | 13 | 10 | Charlie | None | None | None | None |
| 384 | 826958653328592898 | NaN | NaN | 2017-02-02 01:01:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Loki. He smiles like Elvis. Ain't noth... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826958653... | 12 | 10 | Loki | doggo | None | None | None |
| 385 | 826848821049180160 | NaN | NaN | 2017-02-01 17:44:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cupid. He was found in the trash. Now ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826848821... | 13 | 10 | Cupid | doggo | None | None | None |
| 386 | 826615380357632002 | NaN | NaN | 2017-02-01 02:17:19 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Please only send in dogs. We on... | 8.099208e+17 | 4.196984e+09 | 2016-12-17 00:38:52 +0000 | https://twitter.com/dog_rates/status/809920764... | 10 | 10 | None | None | None | None | None |
| 387 | 826598799820865537 | 8.265984e+17 | 4.196984e+09 | 2017-02-01 01:11:25 +0000 | <a href="http://twitter.com/download/iphone" r... | I was going to do 007/10, but the joke wasn't ... | NaN | NaN | NaN | NaN | 7 | 10 | None | None | None | None | None |
| 388 | 826598365270007810 | NaN | NaN | 2017-02-01 01:09:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pawnd... James Pawnd. He's suave af. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826598365... | 13 | 10 | Pawnd | None | None | None | None |
| 389 | 826476773533745153 | NaN | NaN | 2017-01-31 17:06:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pilot. He has mastered the synchronize... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826476773... | 12 | 10 | Pilot | doggo | None | None | None |
| 390 | 826240494070030336 | NaN | NaN | 2017-01-31 01:27:39 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please don't send in any mo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826240494... | 11 | 10 | None | None | None | None | None |
| 391 | 826204788643753985 | NaN | NaN | 2017-01-30 23:05:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a little more info on Dew, your favorit... | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/01/kentuc... | 13 | 10 | None | doggo | None | None | None |
| 392 | 826115272272650244 | NaN | NaN | 2017-01-30 17:10:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ike. He's demonstrating the pupmost re... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/826115272... | 13 | 10 | Ike | None | None | None | None |
| 393 | 825876512159186944 | NaN | NaN | 2017-01-30 01:21:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mo. No one will push him around in the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825876512... | 11 | 10 | Mo | None | None | None | None |
| 394 | 825829644528148480 | NaN | NaN | 2017-01-29 22:15:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Toby. He just found out you only prete... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825829644... | 12 | 10 | Toby | None | None | None | None |
| 395 | 825535076884762624 | NaN | NaN | 2017-01-29 02:44:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a very loving and accepting puppo. Appe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825535076... | 14 | 10 | None | None | None | None | puppo |
| 396 | 825147591692263424 | NaN | NaN | 2017-01-28 01:04:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sweet Pea. She hides in shoe boxes and... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/825147591... | 13 | 10 | Sweet | None | None | None | None |
| 397 | 825120256414846976 | NaN | NaN | 2017-01-27 23:16:13 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to Pablo. He's one go... | 8.250266e+17 | 4.196984e+09 | 2017-01-27 17:04:02 +0000 | https://www.gofundme.com/my-puppys-double-cata... | 12 | 10 | Pablo | None | None | None | puppo |
| 398 | 825026590719483904 | NaN | NaN | 2017-01-27 17:04:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Pablo. He's one gorgeous puppo. A... | NaN | NaN | NaN | https://www.gofundme.com/my-puppys-double-cata... | 12 | 10 | Pablo | None | None | None | puppo |
| 399 | 824796380199809024 | NaN | NaN | 2017-01-27 01:49:15 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bailey. She loves going... | 7.950767e+17 | 4.196984e+09 | 2016-11-06 01:33:58 +0000 | https://twitter.com/dog_rates/status/795076730... | 11 | 10 | Bailey | None | None | None | None |
| 400 | 824775126675836928 | NaN | NaN | 2017-01-27 00:24:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scooter. His lack of opposable thumbs ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824775126... | 12 | 10 | Scooter | None | None | None | None |
| 401 | 824663926340194305 | NaN | NaN | 2017-01-26 17:02:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wilson. Named after the volleyball. He... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824663926... | 13 | 10 | Wilson | None | None | None | None |
| 402 | 824325613288833024 | NaN | NaN | 2017-01-25 18:38:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Retweet the h*ck out of this 13/10 pupper #Bel... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824325613... | 13 | 10 | None | None | None | pupper | None |
| 403 | 824297048279236611 | NaN | NaN | 2017-01-25 16:45:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nala. She got in trouble. One h*ck of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/824297048... | 11 | 10 | Nala | None | None | None | None |
| 404 | 824025158776213504 | NaN | NaN | 2017-01-24 22:44:42 +0000 | <a href="http://twitter.com/download/iphone" r... | "I wish we were dogs" 14/10 for @BadlandsNPS h... | NaN | NaN | NaN | https://twitter.com/badlandsnps/status/8239662... | 14 | 10 | None | None | None | None | None |
| 405 | 823939628516474880 | NaN | NaN | 2017-01-24 17:04:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cash. He's officially given pup on tod... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823939628... | 12 | 10 | Cash | None | None | None | None |
| 406 | 823719002937630720 | NaN | NaN | 2017-01-24 02:28:08 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Balto. He's very conten... | 7.840579e+17 | 4.196984e+09 | 2016-10-06 15:49:14 +0000 | https://vine.co/v/5gKxeUpuKEr,https://vine.co/... | 12 | 10 | Balto | None | None | None | None |
| 407 | 823699002998870016 | NaN | NaN | 2017-01-24 01:08:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Winston. The goggles make him a superh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823699002... | 12 | 10 | Winston | None | None | None | None |
| 408 | 823581115634085888 | NaN | NaN | 2017-01-23 17:20:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Crawford. He's quite h*ckin good at th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823581115... | 11 | 10 | Crawford | None | None | None | None |
| 409 | 823333489516937216 | 8.233264e+17 | 1.582854e+09 | 2017-01-23 00:56:15 +0000 | <a href="http://twitter.com/download/iphone" r... | @HistoryInPics 13/10 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 410 | 823322678127919110 | NaN | NaN | 2017-01-23 00:13:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wyatt. He's got the fastest paws in th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/823322678... | 11 | 10 | Wyatt | None | None | None | None |
| 411 | 823269594223824897 | NaN | NaN | 2017-01-22 20:42:21 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: We only rate dogs. Please don't... | 8.222448e+17 | 4.196984e+09 | 2017-01-20 00:50:15 +0000 | https://twitter.com/dog_rates/status/822244816... | 11 | 10 | None | None | None | None | None |
| 412 | 822975315408461824 | NaN | NaN | 2017-01-22 01:12:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Albus. He's soaked as h*ck. Seems to h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822975315... | 12 | 10 | Albus | None | None | None | None |
| 413 | 822872901745569793 | NaN | NaN | 2017-01-21 18:26:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a super supportive puppo participating ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822872901... | 13 | 10 | None | None | None | None | puppo |
| 414 | 822859134160621569 | NaN | NaN | 2017-01-21 17:31:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hobbes. He was told he was going to th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822859134... | 12 | 10 | Hobbes | None | None | None | None |
| 415 | 822647212903690241 | NaN | NaN | 2017-01-21 03:29:14 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Paisley. She really wan... | 8.224891e+17 | 4.196984e+09 | 2017-01-20 17:00:46 +0000 | https://twitter.com/dog_rates/status/822489057... | 13 | 10 | Paisley | None | None | None | None |
| 416 | 822610361945911296 | NaN | NaN | 2017-01-21 01:02:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Please stop sending in non-canines like this V... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822610361... | 12 | 10 | None | None | None | None | None |
| 417 | 822489057087389700 | NaN | NaN | 2017-01-20 17:00:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Paisley. She really wanted to be presi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822489057... | 13 | 10 | Paisley | None | None | None | None |
| 418 | 822462944365645825 | NaN | NaN | 2017-01-20 15:17:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gabe. He was the unequivocal embodimen... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822462944... | 14 | 10 | Gabe | None | None | pupper | None |
| 419 | 822244816520155136 | NaN | NaN | 2017-01-20 00:50:15 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please don't send pics of m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/822244816... | 11 | 10 | None | None | None | None | None |
| 420 | 822163064745328640 | NaN | NaN | 2017-01-19 19:25:24 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Mattie. She's extremely... | 7.862340e+17 | 4.196984e+09 | 2016-10-12 15:55:59 +0000 | https://twitter.com/dog_rates/status/786233965... | 11 | 10 | Mattie | None | None | None | None |
| 421 | 821886076407029760 | NaN | NaN | 2017-01-19 01:04:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jimison. He was just called a good boy... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821886076... | 13 | 10 | Jimison | None | None | None | None |
| 422 | 821813639212650496 | NaN | NaN | 2017-01-18 20:16:54 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Hercules. He can have what... | 7.806013e+17 | 4.196984e+09 | 2016-09-27 02:53:48 +0000 | https://twitter.com/dog_rates/status/780601303... | 12 | 10 | Hercules | None | None | None | None |
| 423 | 821765923262631936 | NaN | NaN | 2017-01-18 17:07:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Duchess. She uses dark doggo forces to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821765923... | 13 | 10 | Duchess | doggo | None | None | None |
| 424 | 821522889702862852 | NaN | NaN | 2017-01-18 01:01:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harlso. He has a really good idea but ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821522889... | 13 | 10 | Harlso | None | None | None | None |
| 425 | 821421320206483457 | NaN | NaN | 2017-01-17 18:17:58 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Sampson. He just gradua... | 7.823059e+17 | 4.196984e+09 | 2016-10-01 19:47:08 +0000 | https://twitter.com/dog_rates/status/782305867... | 12 | 10 | Sampson | doggo | None | None | None |
| 426 | 821407182352777218 | NaN | NaN | 2017-01-17 17:21:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sundance. He's a doggo drummer. Even s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821407182... | 14 | 10 | Sundance | doggo | None | None | None |
| 427 | 821153421864615936 | 8.211526e+17 | 1.132119e+08 | 2017-01-17 00:33:26 +0000 | <a href="http://twitter.com/download/iphone" r... | @imgur for a polar bear tho I'd say 13/10 is a... | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 428 | 821149554670182400 | NaN | NaN | 2017-01-17 00:18:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Luca. He got caught howling. H*ckin em... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821149554... | 12 | 10 | Luca | None | None | None | None |
| 429 | 821107785811234820 | NaN | NaN | 2017-01-16 21:32:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo who looks like he's about to gi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821107785... | 11 | 10 | None | doggo | None | None | None |
| 430 | 821044531881721856 | NaN | NaN | 2017-01-16 17:20:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Flash. He went way too hard celebratin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/821044531... | 12 | 10 | Flash | None | None | None | None |
| 431 | 820837357901512704 | NaN | NaN | 2017-01-16 03:37:31 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Finn. He's wondering if... | 8.192277e+17 | 4.196984e+09 | 2017-01-11 17:01:16 +0000 | https://twitter.com/dog_rates/status/819227688... | 12 | 10 | Finn | None | None | None | None |
| 432 | 820749716845686786 | NaN | NaN | 2017-01-15 21:49:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sunny. He can take down a polar bear in o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/820749716... | 13 | 10 | Sunny | None | None | None | None |
| 433 | 820690176645140481 | NaN | NaN | 2017-01-15 17:52:40 +0000 | <a href="http://twitter.com/download/iphone" r... | The floofs have been released I repeat the flo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/820690176... | 84 | 70 | None | None | None | None | None |
| 434 | 820494788566847489 | NaN | NaN | 2017-01-15 04:56:16 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: We are proud to support @LoveYo... | 8.203146e+17 | 4.196984e+09 | 2017-01-14 17:00:24 +0000 | https://www.loveyourmelon.com/pages/ourstory,h... | 14 | 10 | None | None | None | None | None |
| 435 | 820446719150292993 | NaN | NaN | 2017-01-15 01:45:15 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Peaches. She's the ulti... | 8.001414e+17 | 4.196984e+09 | 2016-11-20 00:59:15 +0000 | https://twitter.com/dog_rates/status/800141422... | 13 | 10 | Peaches | None | None | None | None |
| 436 | 820314633777061888 | NaN | NaN | 2017-01-14 17:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | We are proud to support @LoveYourMelon on thei... | NaN | NaN | NaN | https://www.loveyourmelon.com/pages/ourstory,h... | 14 | 10 | None | None | None | None | None |
| 437 | 820078625395449857 | NaN | NaN | 2017-01-14 01:22:35 +0000 | <a href="http://twitter.com/download/iphone" r... | I've never wanted to go to a camp more in my e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/820078625... | 12 | 10 | None | None | None | None | None |
| 438 | 820013781606658049 | NaN | NaN | 2017-01-13 21:04:55 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Oliver. He has dreams o... | 8.199522e+17 | 4.196984e+09 | 2017-01-13 17:00:21 +0000 | https://www.gofundme.com/servicedogoliver,http... | 13 | 10 | Oliver | None | None | None | puppo |
| 439 | 819952236453363712 | NaN | NaN | 2017-01-13 17:00:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. He has dreams of being a servi... | NaN | NaN | NaN | https://www.gofundme.com/servicedogoliver,http... | 13 | 10 | Oliver | None | None | None | puppo |
| 440 | 819924195358416896 | NaN | NaN | 2017-01-13 15:08:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a doggo who has messed up. He was... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819924195... | 11 | 10 | None | doggo | None | None | None |
| 441 | 819711362133872643 | NaN | NaN | 2017-01-13 01:03:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Howie. He just bloomed. 11/10 revoluti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819711362... | 11 | 10 | Howie | None | None | None | None |
| 442 | 819588359383371776 | NaN | NaN | 2017-01-12 16:54:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jazzy. She just found out that sandwic... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819588359... | 13 | 10 | Jazzy | None | None | None | None |
| 443 | 819347104292290561 | NaN | NaN | 2017-01-12 00:55:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Anna and Elsa. They fall asleep i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819347104... | 12 | 10 | Anna | None | None | None | None |
| 444 | 819238181065359361 | NaN | NaN | 2017-01-11 17:42:57 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Some happy pupper news to share. 10/10 for eve... | NaN | NaN | NaN | http://us.blastingnews.com/news/2017/01/200-do... | 10 | 10 | None | None | None | pupper | None |
| 445 | 819227688460238848 | NaN | NaN | 2017-01-11 17:01:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finn. He's wondering if you come here ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819227688... | 12 | 10 | Finn | None | None | None | None |
| 446 | 819015337530290176 | NaN | NaN | 2017-01-11 02:57:27 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bo. He was a very good ... | 8.190048e+17 | 4.196984e+09 | 2017-01-11 02:15:36 +0000 | https://twitter.com/dog_rates/status/819004803... | 14 | 10 | Bo | doggo | None | None | None |
| 447 | 819015331746349057 | NaN | NaN | 2017-01-11 02:57:26 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Sunny. She was also a v... | 8.190064e+17 | 4.196984e+09 | 2017-01-11 02:21:57 +0000 | https://twitter.com/dog_rates/status/819006400... | 14 | 10 | Sunny | doggo | None | None | None |
| 448 | 819006400881917954 | NaN | NaN | 2017-01-11 02:21:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sunny. She was also a very good First ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819006400... | 14 | 10 | Sunny | doggo | None | None | None |
| 449 | 819004803107983360 | NaN | NaN | 2017-01-11 02:15:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bo. He was a very good First Doggo. 14... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/819004803... | 14 | 10 | Bo | doggo | None | None | None |
| 450 | 818646164899774465 | NaN | NaN | 2017-01-10 02:30:30 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Seamus. He's very bad a... | 8.083449e+17 | 4.196984e+09 | 2016-12-12 16:16:49 +0000 | https://vine.co/v/5QWd3LZqXxd,https://vine.co/... | 11 | 10 | Seamus | None | None | None | None |
| 451 | 818627210458333184 | NaN | NaN | 2017-01-10 01:15:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Wafer. He represents every fiber of my be... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818627210... | 13 | 10 | Wafer | None | None | None | None |
| 452 | 818614493328580609 | NaN | NaN | 2017-01-10 00:24:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bear. He's a passionate believer of th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818614493... | 12 | 10 | Bear | None | None | None | None |
| 453 | 818588835076603904 | NaN | NaN | 2017-01-09 22:42:41 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Chelsea. She forgot how... | 7.735476e+17 | 4.196984e+09 | 2016-09-07 15:44:53 +0000 | https://twitter.com/dog_rates/status/773547596... | 11 | 10 | Chelsea | None | None | pupper | None |
| 454 | 818536468981415936 | NaN | NaN | 2017-01-09 19:14:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tom. He's a silly dog. Known for his u... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818536468... | 11 | 10 | Tom | None | None | None | None |
| 455 | 818307523543449600 | NaN | NaN | 2017-01-09 04:04:51 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Moose. He doesn't want his... | 8.164506e+17 | 4.196984e+09 | 2017-01-04 01:05:59 +0000 | https://twitter.com/dog_rates/status/816450570... | 13 | 10 | Moose | None | None | None | None |
| 456 | 818259473185828864 | NaN | NaN | 2017-01-09 00:53:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Florence. He saw the same snap you sen... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818259473... | 12 | 10 | Florence | None | None | None | None |
| 457 | 818145370475810820 | NaN | NaN | 2017-01-08 17:20:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Autumn. Her favorite toy is a cheesebu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/818145370... | 11 | 10 | Autumn | None | None | None | None |
| 458 | 817908911860748288 | NaN | NaN | 2017-01-08 01:40:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Looks like he went cross-eyed trying way too h... | NaN | NaN | NaN | https://twitter.com/micahgrimes/status/8179020... | 12 | 10 | None | None | None | None | None |
| 459 | 817827839487737858 | NaN | NaN | 2017-01-07 20:18:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Buddy. He ran into a glass door once. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817827839... | 13 | 10 | Buddy | None | None | None | None |
| 460 | 817777686764523521 | NaN | NaN | 2017-01-07 16:59:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dido. She's playing the lead role in "... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817777686... | 13 | 10 | Dido | doggo | None | pupper | None |
| 461 | 817536400337801217 | NaN | NaN | 2017-01-07 01:00:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Eugene & Patti Melt. No matte... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817536400... | 12 | 10 | Eugene | None | None | None | None |
| 462 | 817502432452313088 | NaN | NaN | 2017-01-06 22:45:43 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Herschel. He's slightly bi... | 6.924173e+17 | 4.196984e+09 | 2016-01-27 18:42:06 +0000 | https://twitter.com/dog_rates/status/692417313... | 7 | 10 | Herschel | None | None | pupper | None |
| 463 | 817423860136083457 | NaN | NaN | 2017-01-06 17:33:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ken. His cheeks are magic. 13/10 (IG: ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817423860... | 13 | 10 | Ken | None | None | None | None |
| 464 | 817415592588222464 | NaN | NaN | 2017-01-06 17:00:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Strudel. He's rather h*ckin pupset that y... | NaN | NaN | NaN | https://www.gofundme.com/help-strudel-walk-aga... | 11 | 10 | Strudel | None | None | None | None |
| 465 | 817181837579653120 | NaN | NaN | 2017-01-06 01:31:47 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Here's a pupper with squeaky hi... | 8.159661e+17 | 4.196984e+09 | 2017-01-02 17:00:46 +0000 | https://twitter.com/dog_rates/status/815966073... | 13 | 10 | None | None | None | pupper | None |
| 466 | 817171292965273600 | NaN | NaN | 2017-01-06 00:49:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tebow. He kindly requests that you put... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817171292... | 13 | 10 | Tebow | None | None | None | None |
| 467 | 817120970343411712 | NaN | NaN | 2017-01-05 21:29:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Name a more iconic quartet... I'll wait. 13/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817120970... | 13 | 10 | None | None | None | None | None |
| 468 | 817056546584727552 | NaN | NaN | 2017-01-05 17:13:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chloe. She fell asleep at the wheel. A... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/817056546... | 11 | 10 | Chloe | None | None | None | None |
| 469 | 816829038950027264 | NaN | NaN | 2017-01-05 02:09:53 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Betty. She's assisting ... | 7.909461e+17 | 4.196984e+09 | 2016-10-25 16:00:09 +0000 | https://twitter.com/dog_rates/status/790946055... | 12 | 10 | Betty | None | None | None | puppo |
| 470 | 816816676327063552 | NaN | NaN | 2017-01-05 01:20:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Timber. He misses Christmas. Specifica... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816816676... | 12 | 10 | Timber | None | None | None | None |
| 471 | 816697700272001025 | NaN | NaN | 2017-01-04 17:27:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Binky. She appears to be rather h*ckin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816697700... | 12 | 10 | Binky | None | None | None | None |
| 472 | 816450570814898180 | NaN | NaN | 2017-01-04 01:05:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Moose. He doesn't want his friend to go b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816450570... | 13 | 10 | Moose | None | None | None | None |
| 473 | 816336735214911488 | NaN | NaN | 2017-01-03 17:33:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dudley. He found a flower and now he's... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816336735... | 11 | 10 | Dudley | None | None | None | None |
| 474 | 816091915477250048 | NaN | NaN | 2017-01-03 01:20:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Comet. He's a Wild Estonian Poofer. Su... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/816091915... | 12 | 10 | Comet | None | None | None | None |
| 475 | 816062466425819140 | NaN | NaN | 2017-01-02 23:23:48 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Jack. He's one of the rare... | 8.159907e+17 | 4.196984e+09 | 2017-01-02 18:38:42 +0000 | https://www.gofundme.com/surgeryforjacktheminp... | 11 | 10 | Jack | None | None | None | None |
| 476 | 816014286006976512 | NaN | NaN | 2017-01-02 20:12:21 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Larry. He has no self c... | 7.320056e+17 | 4.196984e+09 | 2016-05-16 00:31:53 +0000 | https://twitter.com/dog_rates/status/732005617... | 11 | 10 | Larry | None | None | None | None |
| 477 | 815990720817401858 | NaN | NaN | 2017-01-02 18:38:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jack. He's one of the rare doggos that do... | NaN | NaN | NaN | https://www.gofundme.com/surgeryforjacktheminp... | 11 | 10 | Jack | None | None | None | None |
| 478 | 815966073409433600 | NaN | NaN | 2017-01-02 17:00:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper with squeaky hiccups. Please e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815966073... | 13 | 10 | None | None | None | pupper | None |
| 479 | 815745968457060357 | NaN | NaN | 2017-01-02 02:26:09 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to Levi. He's a Madag... | 7.914070e+17 | 4.196984e+09 | 2016-10-26 22:31:36 +0000 | https://twitter.com/dog_rates/status/791406955... | 12 | 10 | Levi | None | None | None | None |
| 480 | 815736392542261248 | NaN | NaN | 2017-01-02 01:48:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Akumi. It's his birthday. He received ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815736392... | 11 | 10 | Akumi | None | None | None | None |
| 481 | 815639385530101762 | NaN | NaN | 2017-01-01 19:22:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Titan. His nose is quite chilly. Reque... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815639385... | 12 | 10 | Titan | None | None | None | None |
| 482 | 815390420867969024 | NaN | NaN | 2017-01-01 02:53:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy New Year from the squad! 13/10 for all h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/815390420... | 13 | 10 | None | None | None | None | None |
| 483 | 814986499976527872 | NaN | NaN | 2016-12-31 00:08:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. Someone attacked him with a sh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814986499... | 11 | 10 | Cooper | None | None | pupper | None |
| 484 | 814638523311648768 | NaN | NaN | 2016-12-30 01:05:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Olivia. She's a passionate advocate of... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814638523... | 12 | 10 | Olivia | None | None | None | None |
| 485 | 814578408554463233 | NaN | NaN | 2016-12-29 21:06:41 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Beau & Wilbur. Wilbur ... | 6.981954e+17 | 4.196984e+09 | 2016-02-12 17:22:12 +0000 | https://twitter.com/dog_rates/status/698195409... | 9 | 10 | Beau | None | None | None | None |
| 486 | 814530161257443328 | NaN | NaN | 2016-12-29 17:54:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alf. Someone just rubbed a balloon on ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814530161... | 12 | 10 | Alf | None | None | None | None |
| 487 | 814153002265309185 | NaN | NaN | 2016-12-28 16:56:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oshie. He's ready to party. Bought tha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/814153002... | 12 | 10 | Oshie | None | None | None | None |
| 488 | 813944609378369540 | NaN | NaN | 2016-12-28 03:08:11 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bruce. He never backs d... | 7.902771e+17 | 4.196984e+09 | 2016-10-23 19:42:02 +0000 | https://twitter.com/dog_rates/status/790277117... | 11 | 10 | Bruce | None | None | None | None |
| 489 | 813910438903693312 | NaN | NaN | 2016-12-28 00:52:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chubbs. He dug a hole and now he's stu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813910438... | 11 | 10 | Chubbs | doggo | None | None | None |
| 490 | 813812741911748608 | NaN | NaN | 2016-12-27 18:24:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Gary, Carrie Fisher's dog. Idk what I can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813812741... | 14 | 10 | Gary | None | None | None | None |
| 491 | 813800681631023104 | NaN | NaN | 2016-12-27 17:36:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sky. She's learning how to roll her R'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813800681... | 12 | 10 | Sky | None | None | None | None |
| 492 | 813217897535406080 | NaN | NaN | 2016-12-26 03:00:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is Atlas. He went all out this year. 13/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813217897... | 13 | 10 | Atlas | None | None | None | None |
| 493 | 813202720496779264 | NaN | NaN | 2016-12-26 02:00:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo who has concluded that Christma... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813202720... | 11 | 10 | None | doggo | None | None | None |
| 494 | 813187593374461952 | NaN | NaN | 2016-12-26 01:00:05 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please don't send in other ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813187593... | 13 | 10 | None | None | None | None | None |
| 495 | 813172488309972993 | NaN | NaN | 2016-12-26 00:00:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Eleanor. She winks like she knows many... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813172488... | 12 | 10 | Eleanor | None | None | None | None |
| 496 | 813157409116065792 | NaN | NaN | 2016-12-25 23:00:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Layla. It is her first Christmas. She ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813157409... | 12 | 10 | Layla | None | None | None | None |
| 497 | 813142292504645637 | NaN | NaN | 2016-12-25 22:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Everybody stop what you're doing and look at t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813142292... | 13 | 10 | None | None | None | None | None |
| 498 | 813130366689148928 | 8.131273e+17 | 4.196984e+09 | 2016-12-25 21:12:41 +0000 | <a href="http://twitter.com/download/iphone" r... | I've been informed by multiple sources that th... | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 499 | 813127251579564032 | NaN | NaN | 2016-12-25 21:00:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's an anonymous doggo that appears to be v... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813127251... | 11 | 10 | None | doggo | None | None | None |
| 500 | 813112105746448384 | NaN | NaN | 2016-12-25 20:00:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Toby. He's pupset because his hat isn't b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813112105... | 12 | 10 | Toby | None | None | None | None |
| 501 | 813096984823349248 | NaN | NaN | 2016-12-25 19:00:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rocky. He got triple-doggo-dared. Stuc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813096984... | 11 | 10 | Rocky | doggo | None | None | None |
| 502 | 813081950185472002 | NaN | NaN | 2016-12-25 18:00:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Baron. He's officially festive as h*ck... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813081950... | 11 | 10 | Baron | None | None | None | None |
| 503 | 813066809284972545 | NaN | NaN | 2016-12-25 17:00:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tyr. He is disgusted by holiday traffi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813066809... | 12 | 10 | Tyr | None | None | None | None |
| 504 | 813051746834595840 | NaN | NaN | 2016-12-25 16:00:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bauer. He had nothing to do with the c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/813051746... | 13 | 10 | Bauer | None | None | None | None |
| 505 | 812781120811126785 | NaN | NaN | 2016-12-24 22:04:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Swagger. He's the Cleveland Browns amb... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812781120... | 10 | 10 | Swagger | None | None | None | None |
| 506 | 812747805718642688 | NaN | NaN | 2016-12-24 19:52:31 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Sammy. At first I was like... | 6.800555e+17 | 4.196984e+09 | 2015-12-24 16:00:30 +0000 | https://twitter.com/dog_rates/status/680055455... | 10 | 10 | Sammy | None | None | None | None |
| 507 | 812709060537683968 | NaN | NaN | 2016-12-24 17:18:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brandi and Harley. They are practicing... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812709060... | 12 | 10 | Brandi | None | None | None | None |
| 508 | 812503143955202048 | NaN | NaN | 2016-12-24 03:40:19 +0000 | <a href="http://twitter.com/download/iphone" r... | I'm happy to inform you all that Jake is in ex... | NaN | NaN | NaN | https://m.facebook.com/story.php?story_fbid=18... | 13 | 10 | None | None | None | None | None |
| 509 | 812466873996607488 | NaN | NaN | 2016-12-24 01:16:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mary. She's desperately trying to recr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812466873... | 12 | 10 | Mary | None | None | None | None |
| 510 | 812372279581671427 | NaN | NaN | 2016-12-23 19:00:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Moe. He's a fetty woof. Got a cardboar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/812372279... | 13 | 10 | Moe | None | None | None | None |
| 511 | 811985624773361665 | NaN | NaN | 2016-12-22 17:23:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Ted. He accidentally opened the f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811985624... | 11 | 10 | Ted | None | None | None | None |
| 512 | 811744202451197953 | NaN | NaN | 2016-12-22 01:24:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Halo. She likes watermelon. 13/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811744202... | 13 | 10 | Halo | None | None | None | None |
| 513 | 811647686436880384 | 8.116272e+17 | 4.196984e+09 | 2016-12-21 19:01:02 +0000 | <a href="http://twitter.com/download/iphone" r... | PUPDATE: I've been informed that Augie was act... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 514 | 811627233043480576 | NaN | NaN | 2016-12-21 17:39:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Augie. He's a savage. Doesn't give a h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811627233... | 10 | 10 | Augie | None | None | None | None |
| 515 | 811386762094317568 | NaN | NaN | 2016-12-21 01:44:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Craig. That's actually a normal sized ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/811386762... | 11 | 10 | Craig | None | None | pupper | None |
| 516 | 810984652412424192 | NaN | NaN | 2016-12-19 23:06:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sam. She smiles 24/7 & secretly aspir... | NaN | NaN | NaN | https://www.gofundme.com/sams-smile,https://tw... | 24 | 7 | Sam | None | None | None | None |
| 517 | 810896069567610880 | NaN | NaN | 2016-12-19 17:14:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hunter. He just found out he needs bra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810896069... | 11 | 10 | Hunter | None | None | None | None |
| 518 | 810657578271330305 | NaN | NaN | 2016-12-19 01:26:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pavlov. His floatation device has fail... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810657578... | 11 | 10 | Pavlov | None | None | None | None |
| 519 | 810284430598270976 | NaN | NaN | 2016-12-18 00:43:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phil. He's a father. A very good fathe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810284430... | 13 | 10 | Phil | None | None | None | None |
| 520 | 810254108431155201 | NaN | NaN | 2016-12-17 22:43:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gus. He likes to be close to you, whic... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/810254108... | 12 | 10 | Gus | None | None | None | None |
| 521 | 809920764300447744 | NaN | NaN | 2016-12-17 00:38:52 +0000 | <a href="http://twitter.com/download/iphone" r... | Please only send in dogs. We only rate dogs, n... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809920764... | 10 | 10 | None | None | None | None | None |
| 522 | 809808892968534016 | NaN | NaN | 2016-12-16 17:14:20 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Maximus. His face is st... | 7.939622e+17 | 4.196984e+09 | 2016-11-02 23:45:19 +0000 | https://twitter.com/dog_rates/status/793962221... | 12 | 10 | Maximus | None | None | None | None |
| 523 | 809448704142938112 | NaN | NaN | 2016-12-15 17:23:04 +0000 | <a href="http://twitter.com/download/iphone" r... | I call this one "A Blep by the Sea" 12/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809448704... | 12 | 10 | None | None | None | None | None |
| 524 | 809220051211603969 | NaN | NaN | 2016-12-15 02:14:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kyro. He's a Stratocumulus Flop. Tongu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809220051... | 12 | 10 | Kyro | None | None | None | None |
| 525 | 809084759137812480 | NaN | NaN | 2016-12-14 17:16:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wallace. You said you brushed your tee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/809084759... | 11 | 10 | Wallace | None | None | None | None |
| 526 | 808838249661788160 | NaN | NaN | 2016-12-14 00:57:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ito. He'll be your uber driver tonight... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808838249... | 13 | 10 | Ito | None | None | None | None |
| 527 | 808733504066486276 | NaN | NaN | 2016-12-13 18:01:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper in a onesie. Quite pupset abou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808733504... | 12 | 10 | None | None | None | pupper | None |
| 528 | 808501579447930884 | NaN | NaN | 2016-12-13 02:39:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Koda. He dug a hole and then sat in it... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808501579... | 12 | 10 | Koda | None | None | None | None |
| 529 | 808344865868283904 | NaN | NaN | 2016-12-12 16:16:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Seamus. He's very bad at entering pool... | NaN | NaN | NaN | https://vine.co/v/5QWd3LZqXxd | 11 | 10 | Seamus | None | None | None | None |
| 530 | 808134635716833280 | NaN | NaN | 2016-12-12 02:21:26 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Milo. I would do terrib... | 8.011679e+17 | 4.196984e+09 | 2016-11-22 20:58:07 +0000 | https://twitter.com/dog_rates/status/801167903... | 13 | 10 | Milo | None | None | None | None |
| 531 | 808106460588765185 | NaN | NaN | 2016-12-12 00:29:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have Burke (pupper) and Dexter (doggo)... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808106460... | 12 | 10 | None | doggo | None | pupper | None |
| 532 | 808001312164028416 | NaN | NaN | 2016-12-11 17:31:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He likes to stick his tongue o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/808001312... | 12 | 10 | Cooper | None | None | None | None |
| 533 | 807621403335917568 | NaN | NaN | 2016-12-10 16:22:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ollie Vue. He was a 3 legged pupper on... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/807621403... | 14 | 10 | Ollie | None | None | pupper | None |
| 534 | 807106840509214720 | NaN | NaN | 2016-12-09 06:17:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stephan. He just wants to help. 13/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/807106840... | 13 | 10 | Stephan | None | None | None | None |
| 535 | 807059379405148160 | NaN | NaN | 2016-12-09 03:08:45 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Cali. She arrived preas... | 7.829691e+17 | 4.196984e+09 | 2016-10-03 15:42:44 +0000 | https://twitter.com/dog_rates/status/782969140... | 12 | 10 | Cali | None | None | None | None |
| 536 | 807010152071229440 | NaN | NaN | 2016-12-08 23:53:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lennon. He's a Boopershnoop Pupperdoop... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/807010152... | 12 | 10 | Lennon | None | None | None | None |
| 537 | 806629075125202948 | NaN | NaN | 2016-12-07 22:38:52 +0000 | <a href="http://twitter.com/download/iphone" r... | "Good afternoon class today we're going to lea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806629075... | 13 | 10 | None | None | None | None | None |
| 538 | 806620845233815552 | NaN | NaN | 2016-12-07 22:06:10 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Idk why this keeps happening. W... | 7.815247e+17 | 4.196984e+09 | 2016-09-29 16:03:01 +0000 | https://twitter.com/dog_rates/status/781524693... | 12 | 10 | None | None | None | None | None |
| 539 | 806576416489959424 | NaN | NaN | 2016-12-07 19:09:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Hooman catch successful. Massive hit by dog. F... | NaN | NaN | NaN | https://twitter.com/deadspin/status/8065709331... | 13 | 10 | None | None | None | None | None |
| 540 | 806542213899489280 | NaN | NaN | 2016-12-07 16:53:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Waffles. He's concerned that the dandr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806542213... | 11 | 10 | Waffles | None | None | None | None |
| 541 | 806242860592926720 | NaN | NaN | 2016-12-06 21:04:11 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Dave. He's currently in... | 7.833346e+17 | 4.196984e+09 | 2016-10-04 15:55:06 +0000 | https://twitter.com/dog_rates/status/783334639... | 12 | 10 | Dave | None | None | None | None |
| 542 | 806219024703037440 | NaN | NaN | 2016-12-06 19:29:28 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please stop sending in non-... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/806219024... | 11 | 10 | incredibly | None | None | None | None |
| 543 | 805958939288408065 | NaN | NaN | 2016-12-06 02:15:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Penny. She fought a bee... | 7.827226e+17 | 4.196984e+09 | 2016-10-02 23:23:04 +0000 | https://twitter.com/dog_rates/status/782722598... | 10 | 10 | Penny | None | None | None | None |
| 544 | 805932879469572096 | NaN | NaN | 2016-12-06 00:32:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Major. He put on a tie for his first r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805932879... | 12 | 10 | Major | None | None | None | None |
| 545 | 805826884734976000 | NaN | NaN | 2016-12-05 17:31:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Duke. He is not a fan of the pupporazz... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805826884... | 12 | 10 | Duke | None | None | None | None |
| 546 | 805823200554876929 | NaN | NaN | 2016-12-05 17:16:37 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Reginald. He's one magi... | 7.841832e+17 | 4.196984e+09 | 2016-10-07 00:06:50 +0000 | https://vine.co/v/5ghHLBMMdlV,https://vine.co/... | 12 | 10 | Reginald | None | None | None | puppo |
| 547 | 805520635690676224 | NaN | NaN | 2016-12-04 21:14:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zeke the Wonder Dog. He never let that... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805520635... | 13 | 10 | Zeke | None | None | None | None |
| 548 | 805487436403003392 | NaN | NaN | 2016-12-04 19:02:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sansa and Gary. They run along the fence ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805487436... | 12 | 10 | Sansa | None | None | None | None |
| 549 | 805207613751304193 | NaN | NaN | 2016-12-04 00:30:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shooter. He's doing quite the snowy zo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/805207613... | 12 | 10 | Shooter | None | None | None | None |
| 550 | 804738756058218496 | NaN | NaN | 2016-12-02 17:27:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Django. He accidentally opened the fro... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/804738756... | 12 | 10 | Django | None | None | None | None |
| 551 | 804475857670639616 | NaN | NaN | 2016-12-02 00:02:45 +0000 | <a href="http://twitter.com/download/iphone" r... | HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13... | NaN | NaN | NaN | https://twitter.com/bvuepd/status/804417859124... | 13 | 10 | None | None | None | None | None |
| 552 | 804413760345620481 | NaN | NaN | 2016-12-01 19:56:00 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Rusty. He's going D1 fo... | 7.848260e+17 | 4.196984e+09 | 2016-10-08 18:41:19 +0000 | https://twitter.com/dog_rates/status/784826020... | 13 | 10 | Rusty | None | None | None | None |
| 553 | 804026241225523202 | NaN | NaN | 2016-11-30 18:16:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bo. He's going to make me cry. 13/10 p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/804026241... | 13 | 10 | Bo | None | None | None | None |
| 554 | 803773340896923648 | NaN | NaN | 2016-11-30 01:31:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Diogi. He fell in the pool as soon as ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803773340... | 12 | 10 | Diogi | None | None | None | puppo |
| 555 | 803692223237865472 | NaN | NaN | 2016-11-29 20:08:52 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I present to you... Dog Jesus. ... | 6.914169e+17 | 4.196984e+09 | 2016-01-25 00:26:41 +0000 | https://twitter.com/dog_rates/status/691416866... | 13 | 10 | None | None | None | None | None |
| 556 | 803638050916102144 | NaN | NaN | 2016-11-29 16:33:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Pupper hath acquire enemy. 13/10 https://t.co/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803638050... | 13 | 10 | None | None | None | pupper | None |
| 557 | 803380650405482500 | NaN | NaN | 2016-11-28 23:30:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sonny. He's an in-home movie critic. That... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803380650... | 12 | 10 | Sonny | None | None | None | None |
| 558 | 803321560782307329 | NaN | NaN | 2016-11-28 19:35:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Philbert. His toilet br... | 7.677549e+17 | 4.196984e+09 | 2016-08-22 16:06:54 +0000 | https://twitter.com/dog_rates/status/767754930... | 11 | 10 | Philbert | None | None | None | None |
| 559 | 803276597545603072 | NaN | NaN | 2016-11-28 16:37:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Winston. His selfie game is legendary.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/803276597... | 11 | 10 | Winston | None | None | None | None |
| 560 | 802952499103731712 | NaN | NaN | 2016-11-27 19:09:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Marley. She's having a ruff day. Prett... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802952499... | 12 | 10 | Marley | None | None | None | None |
| 561 | 802624713319034886 | NaN | NaN | 2016-11-26 21:26:58 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: "Yep... just as I suspected. Yo... | 7.776842e+17 | 4.196984e+09 | 2016-09-19 01:42:24 +0000 | https://twitter.com/dog_rates/status/777684233... | 12 | 10 | None | None | None | None | None |
| 562 | 802600418706604034 | NaN | NaN | 2016-11-26 19:50:26 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Bailey. She has mastered the head tilt... | NaN | NaN | NaN | https://vine.co/v/5FwUWjYaW0Y | 11 | 10 | Bailey | None | None | None | None |
| 563 | 802572683846291456 | NaN | NaN | 2016-11-26 18:00:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Winnie. She's h*ckin ferocious. Dandel... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802572683... | 12 | 10 | Winnie | None | None | None | None |
| 564 | 802323869084381190 | NaN | NaN | 2016-11-26 01:31:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Severus. He's here to fix your cable. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802323869... | 13 | 10 | Severus | None | None | None | None |
| 565 | 802265048156610565 | 7.331095e+17 | 4.196984e+09 | 2016-11-25 21:37:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Like doggo, like pupper version 2. Both 11/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802265048... | 11 | 10 | None | doggo | None | pupper | None |
| 566 | 802247111496568832 | NaN | NaN | 2016-11-25 20:26:31 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Everybody drop what you're doin... | 7.790561e+17 | 4.196984e+09 | 2016-09-22 20:33:42 +0000 | https://twitter.com/dog_rates/status/779056095... | 13 | 10 | None | None | None | None | None |
| 567 | 802239329049477120 | NaN | NaN | 2016-11-25 19:55:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Loki. He'll do your taxes for you. Can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/802239329... | 12 | 10 | Loki | None | None | None | puppo |
| 568 | 802185808107208704 | NaN | NaN | 2016-11-25 16:22:55 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @ChinoChinako: They're good products, Brent... | 8.000650e+17 | 2.488557e+07 | 2016-11-19 19:55:41 +0000 | https://twitter.com/ChinoChinako/status/800065... | 13 | 10 | None | None | None | None | None |
| 569 | 801958328846974976 | NaN | NaN | 2016-11-25 01:18:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ronnie. He hopes you're having a great... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801958328... | 12 | 10 | Ronnie | None | None | None | None |
| 570 | 801854953262350336 | 8.018543e+17 | 1.185634e+07 | 2016-11-24 18:28:13 +0000 | <a href="http://twitter.com/download/iphone" r... | .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 571 | 801538201127157760 | NaN | NaN | 2016-11-23 21:29:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wallace. He'll be your chau-fur this e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801538201... | 12 | 10 | Wallace | None | None | None | None |
| 572 | 801285448605831168 | NaN | NaN | 2016-11-23 04:45:12 +0000 | <a href="http://twitter.com/download/iphone" r... | oh h*ck 10/10 https://t.co/bC69RrW559 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801285448... | 10 | 10 | None | None | None | None | None |
| 573 | 801167903437357056 | NaN | NaN | 2016-11-22 20:58:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Milo. I would do terrible things for M... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801167903... | 13 | 10 | Milo | None | None | None | None |
| 574 | 801127390143516673 | NaN | NaN | 2016-11-22 18:17:08 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Anakin. He strives to r... | 7.757333e+17 | 4.196984e+09 | 2016-09-13 16:30:07 +0000 | https://twitter.com/dog_rates/status/775733305... | 11 | 10 | Anakin | doggo | None | None | None |
| 575 | 801115127852503040 | NaN | NaN | 2016-11-22 17:28:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bones. He's being haunted by another d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/801115127... | 12 | 10 | Bones | doggo | None | pupper | None |
| 576 | 800859414831898624 | 8.008580e+17 | 2.918590e+08 | 2016-11-22 00:32:18 +0000 | <a href="http://twitter.com/download/iphone" r... | @SkyWilliams doggo simply protecting you from ... | NaN | NaN | NaN | NaN | 11 | 10 | None | doggo | None | None | None |
| 577 | 800855607700029440 | NaN | NaN | 2016-11-22 00:17:10 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @Lin_Manuel: 11/10 would recommend. https:/... | 8.008540e+17 | 7.992370e+07 | 2016-11-22 00:10:52 +0000 | https://twitter.com/littlewiewel/status/800852... | 11 | 10 | None | None | None | None | None |
| 578 | 800751577355128832 | NaN | NaN | 2016-11-21 17:23:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Mauve and Murphy. They're rather ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800751577... | 12 | 10 | Mauve | None | None | None | None |
| 579 | 800513324630806528 | NaN | NaN | 2016-11-21 01:37:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chef. Chef loves everyone and wants ev... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800513324... | 11 | 10 | Chef | None | None | None | None |
| 580 | 800459316964663297 | NaN | NaN | 2016-11-20 22:02:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a very sleepy pupper. Appears to be por... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800459316... | 12 | 10 | None | None | None | pupper | None |
| 581 | 800443802682937345 | NaN | NaN | 2016-11-20 21:00:48 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Sampson. He's about to ... | 7.761133e+17 | 4.196984e+09 | 2016-09-14 17:40:06 +0000 | https://twitter.com/dog_rates/status/776113305... | 11 | 10 | Sampson | None | None | pupper | None |
| 582 | 800388270626521089 | NaN | NaN | 2016-11-20 17:20:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Doc. He takes time out of every day to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800388270... | 12 | 10 | Doc | None | floofer | None | None |
| 583 | 800188575492947969 | NaN | NaN | 2016-11-20 04:06:37 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bo. He's a Benedoop Cum... | 6.816941e+17 | 4.196984e+09 | 2015-12-29 04:31:49 +0000 | https://twitter.com/dog_rates/status/681694085... | 11 | 10 | Bo | None | None | pupper | None |
| 584 | 800141422401830912 | NaN | NaN | 2016-11-20 00:59:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Peaches. She's the ultimate selfie sid... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800141422... | 13 | 10 | Peaches | None | None | None | None |
| 585 | 800018252395122689 | NaN | NaN | 2016-11-19 16:49:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo doin a struggle. 11/10 much det... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/800018252... | 11 | 10 | None | doggo | None | None | None |
| 586 | 799774291445383169 | NaN | NaN | 2016-11-19 00:40:24 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Tucker. He would like a... | 7.750851e+17 | 4.196984e+09 | 2016-09-11 21:34:30 +0000 | https://twitter.com/dog_rates/status/775085132... | 13 | 10 | Tucker | None | None | None | None |
| 587 | 799757965289017345 | NaN | NaN | 2016-11-18 23:35:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sobe. She's a h*ckin happy doggo. Only... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799757965... | 13 | 10 | Sobe | doggo | None | None | None |
| 588 | 799422933579902976 | NaN | NaN | 2016-11-18 01:24:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Longfellow (prolly sophisticated). He'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799422933... | 12 | 10 | Longfellow | None | None | None | None |
| 589 | 799308762079035393 | NaN | NaN | 2016-11-17 17:50:33 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I WAS SENT THE ACTUAL DOG IN TH... | 7.743144e+17 | 4.196984e+09 | 2016-09-09 18:31:54 +0000 | https://twitter.com/dog_rates/status/774314403... | 14 | 10 | None | None | None | None | None |
| 590 | 799297110730567681 | NaN | NaN | 2016-11-17 17:04:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeffrey. He's quite the jokester. Take... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799297110... | 11 | 10 | Jeffrey | None | None | None | None |
| 591 | 799063482566066176 | NaN | NaN | 2016-11-17 01:35:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mister. He only wears the most fashion... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/799063482... | 11 | 10 | Mister | None | None | None | None |
| 592 | 798933969379225600 | NaN | NaN | 2016-11-16 17:01:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Iroh. He's in a predicament. 12/10 som... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/798933969... | 12 | 10 | Iroh | None | None | None | None |
| 593 | 798925684722855936 | NaN | NaN | 2016-11-16 16:28:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shadow. He's a firm believer that they... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/798925684... | 11 | 10 | Shadow | None | None | None | None |
| 594 | 798705661114773508 | NaN | NaN | 2016-11-16 01:54:03 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Baloo. He's expecting a fa... | 7.406770e+17 | 4.196984e+09 | 2016-06-08 22:48:46 +0000 | https://twitter.com/dog_rates/status/740676976... | 11 | 10 | Baloo | None | None | pupper | None |
| 595 | 798701998996647937 | NaN | NaN | 2016-11-16 01:39:30 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: We normally don't rate marshmal... | 7.186315e+17 | 4.196984e+09 | 2016-04-09 02:47:55 +0000 | https://twitter.com/dog_rates/status/718631497... | 10 | 10 | None | None | None | None | None |
| 596 | 798697898615730177 | NaN | NaN | 2016-11-16 01:23:12 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Stubert. He just arrive... | 7.128090e+17 | 4.196984e+09 | 2016-03-24 01:11:29 +0000 | https://twitter.com/dog_rates/status/712809025... | 10 | 10 | Stubert | None | None | None | None |
| 597 | 798694562394996736 | NaN | NaN | 2016-11-16 01:09:57 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I'm not sure what's happening h... | 7.012147e+17 | 4.196984e+09 | 2016-02-21 01:19:47 +0000 | https://twitter.com/dog_rates/status/701214700... | 12 | 10 | None | None | None | None | None |
| 598 | 798686750113755136 | NaN | NaN | 2016-11-16 00:38:54 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to Jack (pronounced "... | 6.833919e+17 | 4.196984e+09 | 2016-01-02 20:58:09 +0000 | https://twitter.com/dog_rates/status/683391852... | 11 | 10 | Jack | None | None | None | None |
| 599 | 798682547630837760 | NaN | NaN | 2016-11-16 00:22:12 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Here we see a rare pouched pupp... | 6.769365e+17 | 4.196984e+09 | 2015-12-16 01:27:03 +0000 | https://twitter.com/dog_rates/status/676936541... | 8 | 10 | None | None | None | pupper | None |
| 600 | 798673117451325440 | NaN | NaN | 2016-11-15 23:44:44 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I shall call him squishy and he... | 6.755011e+17 | 4.196984e+09 | 2015-12-12 02:23:01 +0000 | https://twitter.com/dog_rates/status/675501075... | 13 | 10 | None | None | None | None | None |
| 601 | 798665375516884993 | NaN | NaN | 2016-11-15 23:13:58 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Lola. She fell asleep o... | 6.718968e+17 | 4.196984e+09 | 2015-12-02 03:40:57 +0000 | https://twitter.com/dog_rates/status/671896809... | 10 | 10 | Lola | None | None | None | None |
| 602 | 798644042770751489 | NaN | NaN | 2016-11-15 21:49:12 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Paull. He just stubbed ... | 6.704450e+17 | 4.196984e+09 | 2015-11-28 03:31:48 +0000 | https://twitter.com/dog_rates/status/670444955... | 10 | 10 | Paull | None | None | None | None |
| 603 | 798628517273620480 | NaN | NaN | 2016-11-15 20:47:30 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This a Norwegian Pewterschmidt ... | 6.675094e+17 | 4.196984e+09 | 2015-11-20 01:06:48 +0000 | https://twitter.com/dog_rates/status/667509364... | 12 | 10 | None | None | None | None | None |
| 604 | 798585098161549313 | NaN | NaN | 2016-11-15 17:54:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Timison. He just told a... | 6.671828e+17 | 4.196984e+09 | 2015-11-19 03:29:07 +0000 | https://twitter.com/dog_rates/status/667182792... | 10 | 10 | Timison | None | None | None | None |
| 605 | 798576900688019456 | NaN | NaN | 2016-11-15 17:22:24 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Not familiar with this breed. N... | 6.661041e+17 | 4.196984e+09 | 2015-11-16 04:02:55 +0000 | https://twitter.com/dog_rates/status/666104133... | 1 | 10 | None | None | None | None | None |
| 606 | 798340744599797760 | NaN | NaN | 2016-11-15 01:44:00 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Davey. He'll have your ... | 7.717705e+17 | 4.196984e+09 | 2016-09-02 18:03:10 +0000 | https://twitter.com/dog_rates/status/771770456... | 11 | 10 | Davey | None | None | None | None |
| 607 | 798209839306514432 | NaN | NaN | 2016-11-14 17:03:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. His bow tie was too heavy for ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/798209839... | 13 | 10 | Cooper | None | None | None | None |
| 608 | 797971864723324932 | NaN | NaN | 2016-11-14 01:18:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a helicopter pupper. He takes off at ra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/797971864... | 12 | 10 | None | None | None | pupper | None |
| 609 | 797545162159308800 | NaN | NaN | 2016-11-12 21:02:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cassie. She steals things. Guilt incre... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/797545162... | 12 | 10 | Cassie | None | None | None | None |
| 610 | 797236660651966464 | NaN | NaN | 2016-11-12 00:36:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pancake. She loves Batman and winks li... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/797236660... | 12 | 10 | Pancake | None | None | None | None |
| 611 | 797165961484890113 | 7.971238e+17 | 2.916630e+07 | 2016-11-11 19:55:50 +0000 | <a href="http://twitter.com/download/iphone" r... | @JODYHiGHROLLER it may be an 11/10 but what do... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 612 | 796904159865868288 | NaN | NaN | 2016-11-11 02:35:32 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Tyrone. He's a leaf wiz... | 6.873173e+17 | 4.196984e+09 | 2016-01-13 16:56:30 +0000 | https://twitter.com/dog_rates/status/687317306... | 11 | 10 | Tyrone | None | None | None | None |
| 613 | 796865951799083009 | NaN | NaN | 2016-11-11 00:03:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tyr. He's just checking on you. Nifty ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796865951... | 12 | 10 | Tyr | None | None | None | None |
| 614 | 796759840936919040 | NaN | NaN | 2016-11-10 17:02:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Romeo. He was just told that it's... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796759840... | 11 | 10 | Romeo | None | None | None | None |
| 615 | 796563435802726400 | NaN | NaN | 2016-11-10 04:01:37 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I want to finally rate this ico... | 7.809316e+17 | 4.196984e+09 | 2016-09-28 00:46:20 +0000 | https://twitter.com/dog_rates/status/780931614... | 13 | 10 | None | None | None | None | puppo |
| 616 | 796484825502875648 | NaN | NaN | 2016-11-09 22:49:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a sleepy doggo that requested some assi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796484825... | 12 | 10 | None | doggo | None | None | None |
| 617 | 796387464403357696 | NaN | NaN | 2016-11-09 16:22:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Snicku. He's having trouble reading be... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796387464... | 12 | 10 | Snicku | None | None | None | None |
| 618 | 796177847564038144 | NaN | NaN | 2016-11-09 02:29:25 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Ruby. She just turned o... | 7.961497e+17 | 4.196984e+09 | 2016-11-09 00:37:46 +0000 | https://twitter.com/dog_rates/status/796149749... | 11 | 10 | Ruby | None | None | None | None |
| 619 | 796149749086875649 | NaN | NaN | 2016-11-09 00:37:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ruby. She just turned on the news. Off... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796149749... | 11 | 10 | Ruby | None | None | None | None |
| 620 | 796125600683540480 | NaN | NaN | 2016-11-08 23:01:49 +0000 | <a href="http://twitter.com/download/iphone" r... | #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 | NaN | NaN | NaN | https://twitter.com/king5seattle/status/796123... | 13 | 10 | None | None | None | None | None |
| 621 | 796116448414461957 | NaN | NaN | 2016-11-08 22:25:27 +0000 | <a href="http://twitter.com/download/iphone" r... | I didn't believe it at first but now I can see... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796116448... | 11 | 10 | None | None | None | None | None |
| 622 | 796080075804475393 | NaN | NaN | 2016-11-08 20:00:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Yogi. He's 98% floof. Snuggable af. 12... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796080075... | 12 | 10 | Yogi | None | None | None | None |
| 623 | 796031486298386433 | NaN | NaN | 2016-11-08 16:47:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Daisy. She's here to make your day bet... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/796031486... | 13 | 10 | Daisy | None | None | None | None |
| 624 | 795464331001561088 | NaN | NaN | 2016-11-07 03:14:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Elder doggo does a splash. Both 13/10 incredib... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/795464331... | 13 | 10 | None | doggo | None | None | None |
| 625 | 795400264262053889 | NaN | NaN | 2016-11-06 22:59:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brody. He's trying to make the same fa... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/795400264... | 12 | 10 | Brody | None | None | None | None |
| 626 | 795076730285391872 | NaN | NaN | 2016-11-06 01:33:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bailey. She loves going down slides bu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/795076730... | 11 | 10 | Bailey | None | None | None | None |
| 627 | 794983741416415232 | NaN | NaN | 2016-11-05 19:24:28 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Rizzy. She smiles a lot... | 7.895309e+17 | 4.196984e+09 | 2016-10-21 18:16:44 +0000 | https://twitter.com/dog_rates/status/789530877... | 12 | 10 | Rizzy | None | None | None | None |
| 628 | 794926597468000259 | NaN | NaN | 2016-11-05 15:37:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mack. He's rather h*ckin sleepy. Excep... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/794926597... | 12 | 10 | Mack | None | None | None | None |
| 629 | 794355576146903043 | NaN | NaN | 2016-11-04 01:48:22 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Butter. She can have wh... | 7.887659e+17 | 4.196984e+09 | 2016-10-19 15:37:03 +0000 | https://twitter.com/dog_rates/status/788765914... | 12 | 10 | Butter | None | None | None | None |
| 630 | 794332329137291264 | NaN | NaN | 2016-11-04 00:15:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nimbus (like the cloud). He just bough... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/794332329... | 12 | 10 | Nimbus | None | None | None | None |
| 631 | 794205286408003585 | NaN | NaN | 2016-11-03 15:51:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Laika. She was a space pupper. The fir... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/794205286... | 14 | 10 | Laika | None | None | pupper | None |
| 632 | 793962221541933056 | NaN | NaN | 2016-11-02 23:45:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maximus. His face is stuck like that. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793962221... | 12 | 10 | Maximus | None | None | None | None |
| 633 | 793845145112371200 | NaN | NaN | 2016-11-02 16:00:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clark. He was just caught wearing pant... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793845145... | 13 | 10 | Clark | None | None | None | None |
| 634 | 793614319594401792 | NaN | NaN | 2016-11-02 00:42:53 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: When she says you're a good boy... | 7.916723e+17 | 4.196984e+09 | 2016-10-27 16:06:04 +0000 | https://twitter.com/dog_rates/status/791672322... | 13 | 10 | None | None | None | None | None |
| 635 | 793601777308463104 | NaN | NaN | 2016-11-01 23:53:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dobby. I can't stop looking at her fee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793601777... | 12 | 10 | Dobby | None | None | None | None |
| 636 | 793500921481273345 | NaN | NaN | 2016-11-01 17:12:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fiona. She's an extremely mediocre cop... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793500921... | 12 | 10 | Fiona | None | None | None | None |
| 637 | 793286476301799424 | NaN | NaN | 2016-11-01 03:00:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Moreton. He's the Good Boy Who Lived. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793286476... | 13 | 10 | Moreton | None | None | None | None |
| 638 | 793271401113350145 | NaN | NaN | 2016-11-01 02:00:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Dave. It's his favorite day of the year. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793271401... | 12 | 10 | Dave | None | None | None | None |
| 639 | 793256262322548741 | NaN | NaN | 2016-11-01 01:00:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh h*ck look at this spookling right here. Fri... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793256262... | 12 | 10 | None | None | None | None | None |
| 640 | 793241302385262592 | NaN | NaN | 2016-11-01 00:00:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He's out here bustin h*ckin gh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793241302... | 13 | 10 | Tucker | None | None | None | None |
| 641 | 793226087023144960 | NaN | NaN | 2016-10-31 23:00:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Juno. She spooked me up real good, but... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793226087... | 11 | 10 | Juno | None | None | None | None |
| 642 | 793210959003287553 | NaN | NaN | 2016-10-31 22:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maude. She's the h*ckin happiest wasp ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793210959... | 10 | 10 | Maude | None | None | None | None |
| 643 | 793195938047070209 | NaN | NaN | 2016-10-31 21:00:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Lily. She's pupset that her costu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793195938... | 12 | 10 | Lily | None | None | None | puppo |
| 644 | 793180763617361921 | NaN | NaN | 2016-10-31 20:00:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Newt. He's a strawberry. 11/10 https:/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793180763... | 11 | 10 | Newt | None | None | None | None |
| 645 | 793165685325201412 | NaN | NaN | 2016-10-31 19:00:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Benji. He's Air Bud. It's a low effort... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793165685... | 12 | 10 | Benji | None | None | None | None |
| 646 | 793150605191548928 | NaN | NaN | 2016-10-31 18:00:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nida. She's a free elf. Waited so long... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793150605... | 11 | 10 | Nida | None | None | None | None |
| 647 | 793135492858580992 | NaN | NaN | 2016-10-31 17:00:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Your favorite squad is looking extra h*ckin sp... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793135492... | 13 | 10 | None | None | None | None | None |
| 648 | 793120401413079041 | NaN | NaN | 2016-10-31 16:00:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Robin. She's desperately trying to do ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/793120401... | 11 | 10 | Robin | None | None | None | None |
| 649 | 792913359805018113 | NaN | NaN | 2016-10-31 02:17:31 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a perfect example of someone who has t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792913359... | 13 | 10 | a | None | None | None | None |
| 650 | 792883833364439040 | NaN | NaN | 2016-10-31 00:20:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bailey. She's rather h*ckin hype for H... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792883833... | 12 | 10 | Bailey | None | None | None | None |
| 651 | 792773781206999040 | NaN | NaN | 2016-10-30 17:02:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Monster. Not an actual monster tho. He... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792773781... | 12 | 10 | Monster | None | None | None | None |
| 652 | 792394556390137856 | NaN | NaN | 2016-10-29 15:55:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet BeBe. She rocks the messy bun of your dre... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792394556... | 12 | 10 | BeBe | None | None | None | None |
| 653 | 792050063153438720 | NaN | NaN | 2016-10-28 17:07:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Remus. He's a mop that came to life. C... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/792050063... | 11 | 10 | Remus | None | None | None | None |
| 654 | 791821351946420224 | NaN | NaN | 2016-10-28 01:58:16 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This little fella really hates ... | 6.848310e+17 | 4.196984e+09 | 2016-01-06 20:16:44 +0000 | https://vine.co/v/eEZXZI1rqxX,https://vine.co/... | 13 | 10 | None | None | None | pupper | None |
| 655 | 791784077045166082 | NaN | NaN | 2016-10-27 23:30:09 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: I'm not sure what this dog is d... | 6.820881e+17 | 4.196984e+09 | 2015-12-30 06:37:25 +0000 | https://vine.co/v/iqMjlxULzbn,https://vine.co/... | 12 | 10 | None | None | None | None | None |
| 656 | 791780927877898241 | NaN | NaN | 2016-10-27 23:17:38 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Maddie. She gets some w... | 7.467577e+17 | 4.196984e+09 | 2016-06-25 17:31:25 +0000 | https://vine.co/v/5BYq6hmrEI3,https://vine.co/... | 11 | 10 | Maddie | None | None | None | None |
| 657 | 791774931465953280 | NaN | NaN | 2016-10-27 22:53:48 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Vine will be deeply missed. This was by far my... | NaN | NaN | NaN | https://vine.co/v/ea0OwvPTx9l | 14 | 10 | None | None | None | None | None |
| 658 | 791672322847637504 | NaN | NaN | 2016-10-27 16:06:04 +0000 | <a href="http://twitter.com/download/iphone" r... | When she says you're a good boy and you know y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/791672322... | 13 | 10 | None | None | None | None | None |
| 659 | 791406955684368384 | NaN | NaN | 2016-10-26 22:31:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Levi. He's a Madagascan Butterbop... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/791406955... | 12 | 10 | Levi | None | None | None | None |
| 660 | 791312159183634433 | NaN | NaN | 2016-10-26 16:14:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mabel. She's super h*ckin smol. Portab... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/791312159... | 12 | 10 | Mabel | None | None | None | None |
| 661 | 791026214425268224 | NaN | NaN | 2016-10-25 21:18:40 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Alfie. He's touching a ... | 7.638376e+17 | 4.196984e+09 | 2016-08-11 20:40:41 +0000 | https://twitter.com/dog_rates/status/763837565... | 11 | 10 | Alfie | None | None | None | None |
| 662 | 790987426131050500 | NaN | NaN | 2016-10-25 18:44:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Misty. She has a cowboy hat on her nos... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790987426... | 12 | 10 | Misty | None | None | None | None |
| 663 | 790946055508652032 | NaN | NaN | 2016-10-25 16:00:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Betty. She's assisting with the dishes... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790946055... | 12 | 10 | Betty | None | None | None | puppo |
| 664 | 790723298204217344 | NaN | NaN | 2016-10-25 01:14:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Happy. He's a bathtub r... | 7.899865e+17 | 4.196984e+09 | 2016-10-23 00:27:05 +0000 | https://twitter.com/dog_rates/status/789986466... | 12 | 10 | Happy | None | None | None | None |
| 665 | 790698755171364864 | NaN | NaN | 2016-10-24 23:37:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mosby. He appears to be rather h*ckin ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790698755... | 12 | 10 | Mosby | None | None | None | None |
| 666 | 790581949425475584 | NaN | NaN | 2016-10-24 15:53:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Duke. He sneaks into the fridge someti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790581949... | 11 | 10 | Duke | None | None | None | None |
| 667 | 790337589677002753 | NaN | NaN | 2016-10-23 23:42:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Maggie. She can hear your cells divide. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790337589... | 12 | 10 | Maggie | None | None | None | None |
| 668 | 790277117346975746 | NaN | NaN | 2016-10-23 19:42:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bruce. He never backs down from a chal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/790277117... | 11 | 10 | Bruce | None | None | None | None |
| 669 | 790227638568808452 | NaN | NaN | 2016-10-23 16:25:25 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Leela. She's a Fetty Wo... | 7.626999e+17 | 4.196984e+09 | 2016-08-08 17:19:51 +0000 | https://twitter.com/dog_rates/status/762699858... | 11 | 10 | Leela | None | None | None | None |
| 670 | 789986466051088384 | NaN | NaN | 2016-10-23 00:27:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Happy. He's a bathtub reviewer. Seems ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789986466... | 12 | 10 | Happy | None | None | None | None |
| 671 | 789960241177853952 | NaN | NaN | 2016-10-22 22:42:52 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Buddy. His father was a... | 7.624645e+17 | 4.196984e+09 | 2016-08-08 01:44:46 +0000 | https://twitter.com/dog_rates/status/762464539... | 12 | 10 | Buddy | None | None | None | None |
| 672 | 789903600034189313 | NaN | NaN | 2016-10-22 18:57:48 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Ralphy. His dreams were just shattered... | NaN | NaN | NaN | https://vine.co/v/5wPT1aBxPQZ | 13 | 10 | Ralphy | None | None | pupper | None |
| 673 | 789628658055020548 | NaN | NaN | 2016-10-22 00:45:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Eli. He can fly. 13/10 magical af http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789628658... | 13 | 10 | Eli | None | None | None | None |
| 674 | 789599242079838210 | NaN | NaN | 2016-10-21 22:48:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brownie. She's wearing a Halloween the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789599242... | 12 | 10 | Brownie | None | None | None | None |
| 675 | 789530877013393408 | NaN | NaN | 2016-10-21 18:16:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rizzy. She smiles a lot. 12/10 contagi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789530877... | 12 | 10 | Rizzy | None | None | None | None |
| 676 | 789314372632018944 | NaN | NaN | 2016-10-21 03:56:25 +0000 | <a href="http://twitter.com/download/iphone" r... | HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOO... | NaN | NaN | NaN | https://twitter.com/sebscat/status/78881832853... | 13 | 10 | None | None | None | None | None |
| 677 | 789280767834746880 | NaN | NaN | 2016-10-21 01:42:53 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Meyer. He has to hold s... | 7.507196e+17 | 4.196984e+09 | 2016-07-06 15:54:42 +0000 | https://twitter.com/dog_rates/status/750719632... | 12 | 10 | Meyer | None | None | None | None |
| 678 | 789268448748703744 | NaN | NaN | 2016-10-21 00:53:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stella. She's happier than I will ever... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789268448... | 10 | 10 | Stella | None | None | None | None |
| 679 | 789137962068021249 | NaN | NaN | 2016-10-20 16:15:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bo. He's a West Congolese Bugaboop Snu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/789137962... | 12 | 10 | Bo | None | None | None | None |
| 680 | 788908386943430656 | NaN | NaN | 2016-10-20 01:03:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She destroyed not one, but two r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788908386... | 11 | 10 | Lucy | None | None | None | None |
| 681 | 788765914992902144 | NaN | NaN | 2016-10-19 15:37:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Butter. She can have whatever she want... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788765914... | 12 | 10 | Butter | None | None | None | None |
| 682 | 788552643979468800 | NaN | NaN | 2016-10-19 01:29:35 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Say hello to mad pupper. You kn... | 7.363926e+17 | 4.196984e+09 | 2016-05-28 03:04:00 +0000 | https://vine.co/v/iEggaEOiLO3,https://vine.co/... | 13 | 10 | mad | None | None | pupper | None |
| 683 | 788412144018661376 | NaN | NaN | 2016-10-18 16:11:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dexter. He breaks hearts for a living.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788412144... | 11 | 10 | Dexter | None | None | None | None |
| 684 | 788178268662984705 | NaN | NaN | 2016-10-18 00:41:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Atlas is back and this time he's got doggles. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788178268... | 13 | 10 | None | None | None | None | None |
| 685 | 788150585577050112 | NaN | NaN | 2016-10-17 22:51:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leo. He's a golden chow. Rather h*ckin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788150585... | 13 | 10 | Leo | None | None | None | None |
| 686 | 788070120937619456 | NaN | NaN | 2016-10-17 17:32:13 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bo and Ty. Bo eats pape... | 7.610045e+17 | 4.196984e+09 | 2016-08-04 01:03:17 +0000 | https://twitter.com/dog_rates/status/761004547... | 11 | 10 | Bo | None | None | None | None |
| 687 | 788039637453406209 | NaN | NaN | 2016-10-17 15:31:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Did... did they pick out that license plate? 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/788039637... | 12 | 10 | None | None | None | None | None |
| 688 | 787810552592695296 | NaN | NaN | 2016-10-17 00:20:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Frank. He wears sunglasses and walks h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787810552... | 11 | 10 | Frank | None | None | None | None |
| 689 | 787717603741622272 | NaN | NaN | 2016-10-16 18:11:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tonks. She is a service puppo. Can hea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787717603... | 13 | 10 | Tonks | None | None | None | puppo |
| 690 | 787397959788929025 | NaN | NaN | 2016-10-15 21:01:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Moose. He's rather h*ckin dangerous (y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787397959... | 11 | 10 | Moose | None | None | None | None |
| 691 | 787322443945877504 | NaN | NaN | 2016-10-15 16:01:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lincoln. He forgot to use his blinker ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/787322443... | 10 | 10 | Lincoln | None | None | None | None |
| 692 | 787111942498508800 | NaN | NaN | 2016-10-15 02:04:45 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Carl. He's very powerfu... | 7.529324e+17 | 4.196984e+09 | 2016-07-12 18:27:35 +0000 | https://vine.co/v/OEppMFbejFz,https://vine.co/... | 12 | 10 | Carl | None | None | None | None |
| 693 | 786963064373534720 | NaN | NaN | 2016-10-14 16:13:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rory. He's got an interview in a few m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786963064... | 12 | 10 | Rory | None | None | None | None |
| 694 | 786729988674449408 | NaN | NaN | 2016-10-14 00:47:00 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Oakley. He has no idea ... | 7.594477e+17 | 4.196984e+09 | 2016-07-30 17:56:51 +0000 | https://twitter.com/dog_rates/status/759447681... | 11 | 10 | Oakley | None | None | None | None |
| 695 | 786709082849828864 | NaN | NaN | 2016-10-13 23:23:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Logan, the Chow who lived. He solemnly... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786709082... | 75 | 10 | Logan | None | None | None | None |
| 696 | 786664955043049472 | NaN | NaN | 2016-10-13 20:28:35 +0000 | <a href="http://twitter.com/download/iphone" r... | "Honestly Kathleen I just want more Ken Bone" ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786664955... | 12 | 10 | None | None | None | None | None |
| 697 | 786595970293370880 | NaN | NaN | 2016-10-13 15:54:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dale. He's a real spookster. Did me qu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786595970... | 11 | 10 | Dale | None | None | None | None |
| 698 | 786363235746385920 | NaN | NaN | 2016-10-13 00:29:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rizzo. He has many talents. A true ren... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786363235... | 13 | 10 | Rizzo | doggo | None | None | None |
| 699 | 786286427768250368 | NaN | NaN | 2016-10-12 19:24:27 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Arnie. He's afraid of his own bark. 12... | NaN | NaN | NaN | https://vine.co/v/5XH0WqHwiFp | 12 | 10 | Arnie | None | None | None | None |
| 700 | 786233965241827333 | NaN | NaN | 2016-10-12 15:55:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mattie. She's extremely dangerous. Wil... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/786233965... | 11 | 10 | Mattie | None | None | None | None |
| 701 | 786051337297522688 | 7.727430e+17 | 7.305050e+17 | 2016-10-12 03:50:17 +0000 | <a href="http://twitter.com/download/iphone" r... | 13/10 for breakdancing puppo @shibbnbot | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | puppo |
| 702 | 786036967502913536 | NaN | NaN | 2016-10-12 02:53:11 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Scout. He really wants ... | 7.798343e+17 | 4.196984e+09 | 2016-09-25 00:06:08 +0000 | https://twitter.com/dog_rates/status/779834332... | 11 | 10 | Scout | None | None | None | None |
| 703 | 785927819176054784 | NaN | NaN | 2016-10-11 19:39:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She's strives to be the best pot... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785927819... | 12 | 10 | Lucy | None | None | None | None |
| 704 | 785872687017132033 | NaN | NaN | 2016-10-11 16:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rusty. He appears to be rather h*ckin flu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785872687... | 12 | 10 | Rusty | None | None | None | None |
| 705 | 785639753186217984 | NaN | NaN | 2016-10-11 00:34:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pinot. He's a sophisticated doggo. You... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785639753... | 10 | 10 | Pinot | doggo | None | pupper | None |
| 706 | 785533386513321988 | NaN | NaN | 2016-10-10 17:32:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dallas. Her tongue is ridiculous. 11/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785533386... | 11 | 10 | Dallas | None | None | None | None |
| 707 | 785515384317313025 | NaN | NaN | 2016-10-10 16:20:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Today, 10/10, should be National Dog Rates Day | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 708 | 785264754247995392 | NaN | NaN | 2016-10-09 23:44:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Doc. He requested to be carried around... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785264754... | 12 | 10 | Doc | None | None | None | None |
| 709 | 785170936622350336 | NaN | NaN | 2016-10-09 17:31:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hero. He was enjoying the car ride unt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/785170936... | 11 | 10 | Hero | None | None | None | None |
| 710 | 784826020293709826 | NaN | NaN | 2016-10-08 18:41:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rusty. He's going D1 for sure. Insane ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/784826020... | 13 | 10 | Rusty | None | None | None | None |
| 711 | 784517518371221505 | NaN | NaN | 2016-10-07 22:15:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Frankie. He has yet to learn how to co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/784517518... | 11 | 10 | Frankie | None | None | None | None |
| 712 | 784431430411685888 | NaN | NaN | 2016-10-07 16:33:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stormy. He's curly af. Already pupared... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/784431430... | 12 | 10 | Stormy | None | None | None | None |
| 713 | 784183165795655680 | NaN | NaN | 2016-10-07 00:06:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Reginald. He's one magical puppo. Aero... | NaN | NaN | NaN | https://vine.co/v/5ghHLBMMdlV | 12 | 10 | Reginald | None | None | None | puppo |
| 714 | 784057939640352768 | NaN | NaN | 2016-10-06 15:49:14 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Balto. He's very content. Legendary to... | NaN | NaN | NaN | https://vine.co/v/5gKxeUpuKEr | 12 | 10 | Balto | None | None | None | None |
| 715 | 783839966405230592 | NaN | NaN | 2016-10-06 01:23:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Riley. His owner put a donut pillow ar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783839966... | 13 | 10 | Riley | None | None | None | None |
| 716 | 783821107061198850 | NaN | NaN | 2016-10-06 00:08:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mairi. She has mastered the art of cam... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783821107... | 12 | 10 | Mairi | None | None | None | None |
| 717 | 783695101801398276 | NaN | NaN | 2016-10-05 15:47:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Loomis. He's the leader of the Kenneth... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783695101... | 12 | 10 | Loomis | None | None | None | None |
| 718 | 783466772167098368 | NaN | NaN | 2016-10-05 00:40:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finn. He likes eavesdropping from fili... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783466772... | 11 | 10 | Finn | None | None | None | None |
| 719 | 783391753726550016 | NaN | NaN | 2016-10-04 19:42:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Godi. He's an avid beachgoer and part tim... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783391753... | 13 | 10 | Godi | None | None | None | None |
| 720 | 783347506784731136 | NaN | NaN | 2016-10-04 16:46:14 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Kenny. He just wants to... | 6.742918e+17 | 4.196984e+09 | 2015-12-08 18:17:56 +0000 | https://twitter.com/dog_rates/status/674291837... | 11 | 10 | Kenny | None | None | None | None |
| 721 | 783334639985389568 | NaN | NaN | 2016-10-04 15:55:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dave. He's currently in a predicament.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783334639... | 12 | 10 | Dave | None | None | None | None |
| 722 | 783085703974514689 | NaN | NaN | 2016-10-03 23:25:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Earl. He can't catch. Did his best tho... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/783085703... | 11 | 10 | Earl | None | None | None | None |
| 723 | 782969140009107456 | NaN | NaN | 2016-10-03 15:42:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cali. She arrived preassembled. Conven... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782969140... | 12 | 10 | Cali | None | None | None | None |
| 724 | 782747134529531904 | NaN | NaN | 2016-10-03 01:00:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Deacon. He's the happiest almost dry d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782747134... | 11 | 10 | Deacon | doggo | None | None | None |
| 725 | 782722598790725632 | NaN | NaN | 2016-10-02 23:23:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She fought a bee and the bee wo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782722598... | 10 | 10 | Penny | None | None | None | None |
| 726 | 782598640137187329 | NaN | NaN | 2016-10-02 15:10:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Timmy. He's quite large. According to ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782598640... | 11 | 10 | Timmy | None | None | None | None |
| 727 | 782305867769217024 | NaN | NaN | 2016-10-01 19:47:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sampson. He just graduated. Ready to b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/782305867... | 12 | 10 | Sampson | doggo | None | None | None |
| 728 | 782021823840026624 | NaN | NaN | 2016-10-01 00:58:26 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Harper. She scraped her... | 7.076109e+17 | 4.196984e+09 | 2016-03-09 16:56:11 +0000 | https://twitter.com/dog_rates/status/707610948... | 12 | 10 | Harper | None | None | None | None |
| 729 | 781955203444699136 | NaN | NaN | 2016-09-30 20:33:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chipson. He weighed in at .3 ounces an... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781955203... | 11 | 10 | Chipson | None | None | None | None |
| 730 | 781661882474196992 | NaN | NaN | 2016-09-30 01:08:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Who keeps sending in pictures without dogs in ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781661882... | 5 | 10 | None | None | None | None | None |
| 731 | 781655249211752448 | NaN | NaN | 2016-09-30 00:41:48 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Combo. The daily struggles of being a ... | NaN | NaN | NaN | https://vine.co/v/5rt6T3qm7hL | 11 | 10 | Combo | doggo | None | None | None |
| 732 | 781524693396357120 | NaN | NaN | 2016-09-29 16:03:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Idk why this keeps happening. We only rate dog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781524693... | 12 | 10 | None | None | None | None | None |
| 733 | 781308096455073793 | NaN | NaN | 2016-09-29 01:42:20 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Pupper butt 1, Doggo 0. Both 12/10 https://t.c... | NaN | NaN | NaN | https://vine.co/v/5rgu2Law2ut | 12 | 10 | None | doggo | None | pupper | None |
| 734 | 781251288990355457 | NaN | NaN | 2016-09-28 21:56:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oakley. He just got yelled at for goin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781251288... | 11 | 10 | Oakley | None | None | None | None |
| 735 | 781163403222056960 | NaN | NaN | 2016-09-28 16:07:23 +0000 | <a href="http://twitter.com/download/iphone" r... | We normally don't rate lobsters, but this one ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/781163403... | 10 | 10 | None | None | None | None | None |
| 736 | 780931614150983680 | NaN | NaN | 2016-09-28 00:46:20 +0000 | <a href="http://twitter.com/download/iphone" r... | I want to finally rate this iconic puppo who t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780931614... | 13 | 10 | None | None | None | None | puppo |
| 737 | 780858289093574656 | NaN | NaN | 2016-09-27 19:54:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dash. He's very stylish, but also incr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780858289... | 10 | 10 | Dash | None | None | None | None |
| 738 | 780800785462489090 | NaN | NaN | 2016-09-27 16:06:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Koda. He has a weird relationship with... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780800785... | 11 | 10 | Koda | None | None | None | None |
| 739 | 780601303617732608 | NaN | NaN | 2016-09-27 02:53:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Hercules. He can have whatever he wants f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780601303... | 12 | 10 | Hercules | None | None | None | None |
| 740 | 780543529827336192 | NaN | NaN | 2016-09-26 23:04:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a perturbed super floof. 12/10 would sn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780543529... | 12 | 10 | None | None | None | None | None |
| 741 | 780496263422808064 | NaN | NaN | 2016-09-26 19:56:24 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Bell. She likes holding... | 7.424232e+17 | 4.196984e+09 | 2016-06-13 18:27:32 +0000 | https://twitter.com/dog_rates/status/742423170... | 12 | 10 | Bell | None | None | None | None |
| 742 | 780476555013349377 | NaN | NaN | 2016-09-26 18:38:05 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @Patreon: Well. @dog_rates is on Patreon. \... | 7.804657e+17 | 1.228326e+09 | 2016-09-26 17:55:00 +0000 | https://www.patreon.com/WeRateDogs,https://twi... | 12 | 10 | None | None | None | None | None |
| 743 | 780459368902959104 | NaN | NaN | 2016-09-26 17:29:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bear. Don't worry, he's not a real bea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780459368... | 11 | 10 | Bear | None | None | None | None |
| 744 | 780192070812196864 | NaN | NaN | 2016-09-25 23:47:39 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Pls stop sending in non-can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/780192070... | 11 | 10 | None | None | None | None | None |
| 745 | 780092040432480260 | NaN | NaN | 2016-09-25 17:10:10 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Hank. He's mischievous ... | 7.533757e+17 | 4.196984e+09 | 2016-07-13 23:48:51 +0000 | https://twitter.com/dog_rates/status/753375668... | 8 | 10 | Hank | None | None | None | None |
| 746 | 780074436359819264 | NaN | NaN | 2016-09-25 16:00:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here's a doggo questioning his entire existenc... | NaN | NaN | NaN | https://vine.co/v/5nzYBpl0TY2 | 10 | 10 | None | doggo | None | None | None |
| 747 | 779834332596887552 | NaN | NaN | 2016-09-25 00:06:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scout. He really wants to kiss himself... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779834332... | 11 | 10 | Scout | None | None | None | None |
| 748 | 779377524342161408 | NaN | NaN | 2016-09-23 17:50:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Have you ever seen such a smol pupper? Portabl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779377524... | 12 | 10 | None | None | None | pupper | None |
| 749 | 779124354206535695 | NaN | NaN | 2016-09-23 01:04:56 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Hurley. He's the curly one... | 6.794628e+17 | 4.196984e+09 | 2015-12-23 00:45:35 +0000 | https://twitter.com/dog_rates/status/679462823... | 11 | 10 | Hurley | None | None | None | None |
| 750 | 779123168116150273 | NaN | NaN | 2016-09-23 01:00:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reggie. He hugs everyone he meets. 12/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779123168... | 12 | 10 | Reggie | None | None | None | None |
| 751 | 779056095788752897 | NaN | NaN | 2016-09-22 20:33:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Everybody drop what you're doing and look at t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/779056095... | 13 | 10 | None | None | None | None | None |
| 752 | 778990705243029504 | NaN | NaN | 2016-09-22 16:13:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jay. He's really h*ckin happy about th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778990705... | 11 | 10 | Jay | None | None | None | None |
| 753 | 778774459159379968 | NaN | NaN | 2016-09-22 01:54:34 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: In case you haven't seen the mo... | 7.580996e+17 | 4.196984e+09 | 2016-07-27 00:40:12 +0000 | https://vine.co/v/hQJbaj1VpIz,https://vine.co/... | 13 | 10 | None | None | None | None | None |
| 754 | 778764940568104960 | NaN | NaN | 2016-09-22 01:16:45 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh my god it's Narcos but Barkos. 13/10 someon... | NaN | NaN | NaN | https://m.youtube.com/watch?v=idKxCMsS3FQ&feat... | 13 | 10 | None | None | None | None | None |
| 755 | 778748913645780993 | NaN | NaN | 2016-09-22 00:13:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mya (pronounced "mmmyah?"). Her head i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778748913... | 11 | 10 | Mya | None | None | None | None |
| 756 | 778650543019483137 | NaN | NaN | 2016-09-21 17:42:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Strider. He thinks he's a sorority girl. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778650543... | 10 | 10 | Strider | None | None | None | None |
| 757 | 778624900596654080 | NaN | NaN | 2016-09-21 16:00:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She's a sailor pup. 11/10 would... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778624900... | 11 | 10 | Penny | None | None | None | None |
| 758 | 778408200802557953 | NaN | NaN | 2016-09-21 01:39:11 +0000 | <a href="http://twitter.com/download/iphone" r... | RIP Loki. Thank you for the good times. You wi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778408200... | 14 | 10 | None | None | None | None | None |
| 759 | 778396591732486144 | NaN | NaN | 2016-09-21 00:53:04 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is an East African Chalupa... | 7.030419e+17 | 4.196984e+09 | 2016-02-26 02:20:37 +0000 | https://twitter.com/dog_rates/status/703041949... | 10 | 10 | an | None | None | None | None |
| 760 | 778383385161035776 | NaN | NaN | 2016-09-21 00:00:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nala. She's a future Dogue model. Won'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778383385... | 13 | 10 | Nala | None | None | None | None |
| 761 | 778286810187399168 | NaN | NaN | 2016-09-20 17:36:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stanley. He has too much skin. Isn't h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778286810... | 11 | 10 | Stanley | None | None | None | None |
| 762 | 778039087836069888 | NaN | NaN | 2016-09-20 01:12:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Evolution of a pupper yawn featuring Max. 12/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778039087... | 12 | 10 | None | None | None | pupper | None |
| 763 | 778027034220126208 | NaN | NaN | 2016-09-20 00:24:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sophie. She's a Jubilant Bush Pupper. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/778027034... | 27 | 10 | Sophie | None | None | pupper | None |
| 764 | 777953400541634568 | NaN | NaN | 2016-09-19 19:31:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Gerald. He's a fairly exot... | 7.681934e+17 | 4.196984e+09 | 2016-08-23 21:09:14 +0000 | https://twitter.com/dog_rates/status/768193404... | 8 | 10 | Gerald | doggo | None | None | None |
| 765 | 777885040357281792 | NaN | NaN | 2016-09-19 15:00:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wesley. He's clearly trespassing. Seem... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777885040... | 3 | 10 | Wesley | None | None | None | None |
| 766 | 777684233540206592 | NaN | NaN | 2016-09-19 01:42:24 +0000 | <a href="http://twitter.com/download/iphone" r... | "Yep... just as I suspected. You're not flossi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777684233... | 12 | 10 | None | None | None | None | None |
| 767 | 777641927919427584 | NaN | NaN | 2016-09-18 22:54:18 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Arnie. He's a Nova Scot... | 7.504293e+17 | 4.196984e+09 | 2016-07-05 20:41:01 +0000 | https://twitter.com/dog_rates/status/750429297... | 12 | 10 | Arnie | None | None | None | None |
| 768 | 777621514455814149 | NaN | NaN | 2016-09-18 21:33:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Derek. You can't look at him and not s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777621514... | 12 | 10 | Derek | None | None | None | None |
| 769 | 777189768882946048 | NaN | NaN | 2016-09-17 16:57:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeffrey. He's being held so he doesn't... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/777189768... | 12 | 10 | Jeffrey | None | None | None | None |
| 770 | 776819012571455488 | NaN | NaN | 2016-09-16 16:24:19 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Everybody look at this beautifu... | 6.798284e+17 | 4.196984e+09 | 2015-12-24 00:58:27 +0000 | https://twitter.com/dog_rates/status/679828447... | 13 | 10 | None | None | None | pupper | None |
| 771 | 776813020089548800 | NaN | NaN | 2016-09-16 16:00:31 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Solomon. He was arrested for possession o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776813020... | 12 | 10 | Solomon | None | None | None | None |
| 772 | 776477788987613185 | NaN | NaN | 2016-09-15 17:48:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Huck. He's addicted to caffeine. Hope ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776477788... | 11 | 10 | Huck | None | None | pupper | None |
| 773 | 776249906839351296 | NaN | NaN | 2016-09-15 02:42:54 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: We only rate dogs. Pls stop sen... | 7.007478e+17 | 4.196984e+09 | 2016-02-19 18:24:26 +0000 | https://twitter.com/dog_rates/status/700747788... | 11 | 10 | very | None | None | None | None |
| 774 | 776218204058357768 | NaN | NaN | 2016-09-15 00:36:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Atlas rolled around in some chalk and now he's... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776218204... | 13 | 10 | None | None | floofer | None | None |
| 775 | 776201521193218049 | NaN | NaN | 2016-09-14 23:30:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is O'Malley. That is how he sleeps. Doesn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776201521... | 10 | 10 | O | None | None | None | None |
| 776 | 776113305656188928 | NaN | NaN | 2016-09-14 17:40:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sampson. He's about to get hit with a ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776113305... | 11 | 10 | Sampson | None | None | pupper | None |
| 777 | 776088319444877312 | NaN | NaN | 2016-09-14 16:00:49 +0000 | <a href="http://twitter.com/download/iphone" r... | I can't tap the screen to make the hearts appe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/776088319... | 10 | 10 | None | None | None | None | None |
| 778 | 775898661951791106 | NaN | NaN | 2016-09-14 03:27:11 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Like father (doggo), like son (... | 7.331095e+17 | 4.196984e+09 | 2016-05-19 01:38:16 +0000 | https://twitter.com/dog_rates/status/733109485... | 12 | 10 | None | doggo | None | pupper | None |
| 779 | 775842724423557120 | NaN | NaN | 2016-09-13 23:44:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Blue. He was having an average day unt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775842724... | 12 | 10 | Blue | None | None | None | None |
| 780 | 775733305207554048 | NaN | NaN | 2016-09-13 16:30:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Anakin. He strives to reach his full d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775733305... | 11 | 10 | Anakin | doggo | None | None | None |
| 781 | 775729183532220416 | NaN | NaN | 2016-09-13 16:13:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This girl straight up rejected a guy because h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775729183... | 13 | 10 | None | None | None | None | None |
| 782 | 775364825476165632 | NaN | NaN | 2016-09-12 16:05:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finley. He's an independent doggo stil... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775364825... | 11 | 10 | Finley | doggo | None | None | None |
| 783 | 775350846108426240 | NaN | NaN | 2016-09-12 15:10:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Maximus. A little rain won't stop him.... | NaN | NaN | NaN | https://vine.co/v/ijmv0PD0XXD | 12 | 10 | Maximus | None | None | None | None |
| 784 | 775096608509886464 | NaN | NaN | 2016-09-11 22:20:06 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: After so many requests, this is... | 7.403732e+17 | 4.196984e+09 | 2016-06-08 02:41:38 +0000 | https://twitter.com/dog_rates/status/740373189... | 9 | 11 | None | None | None | None | None |
| 785 | 775085132600442880 | NaN | NaN | 2016-09-11 21:34:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He would like a hug. 13/10 som... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/775085132... | 13 | 10 | Tucker | None | None | None | None |
| 786 | 774757898236878852 | NaN | NaN | 2016-09-10 23:54:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finley. She's a Beneboop Cumbersplash.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/774757898... | 12 | 10 | Finley | None | None | None | None |
| 787 | 774639387460112384 | NaN | NaN | 2016-09-10 16:03:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sprinkles. He's trapped in light jail.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/774639387... | 10 | 10 | Sprinkles | None | None | None | None |
| 788 | 774314403806253056 | NaN | NaN | 2016-09-09 18:31:54 +0000 | <a href="http://twitter.com/download/iphone" r... | I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC B... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/774314403... | 14 | 10 | None | None | None | None | None |
| 789 | 773985732834758656 | NaN | NaN | 2016-09-08 20:45:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Winnie. She just made awkward eye contact... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773985732... | 11 | 10 | Winnie | None | None | pupper | None |
| 790 | 773922284943896577 | NaN | NaN | 2016-09-08 16:33:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Heinrich (pronounced "Pat"). He's a Bo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773922284... | 12 | 10 | Heinrich | None | None | None | None |
| 791 | 773704687002451968 | NaN | NaN | 2016-09-08 02:09:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Loki. He knows he's adorable. One ear ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773704687... | 12 | 10 | Loki | None | None | None | None |
| 792 | 773670353721753600 | NaN | NaN | 2016-09-07 23:52:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shakespeare. He appears to be maximum ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773670353... | 10 | 10 | Shakespeare | None | None | None | None |
| 793 | 773547596996571136 | NaN | NaN | 2016-09-07 15:44:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chelsea. She forgot how to dog. 11/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773547596... | 11 | 10 | Chelsea | None | None | pupper | None |
| 794 | 773336787167145985 | NaN | NaN | 2016-09-07 01:47:12 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Fizz. She thinks love is a... | 7.713808e+17 | 4.196984e+09 | 2016-09-01 16:14:48 +0000 | https://twitter.com/dog_rates/status/771380798... | 11 | 10 | Fizz | None | None | None | None |
| 795 | 773308824254029826 | NaN | NaN | 2016-09-06 23:56:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bungalo. She uses that face to get wha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773308824... | 12 | 10 | Bungalo | None | None | None | None |
| 796 | 773247561583001600 | NaN | NaN | 2016-09-06 19:52:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chip. He's a pupholder. Comes with the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773247561... | 10 | 10 | Chip | None | None | None | None |
| 797 | 773191612633579521 | NaN | NaN | 2016-09-06 16:10:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Grey. He's the dogtor in charge of you... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/773191612... | 12 | 10 | Grey | None | None | None | None |
| 798 | 772877495989305348 | NaN | NaN | 2016-09-05 19:22:09 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | You need to watch these two doggos argue throu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772877495... | 11 | 10 | None | None | None | None | None |
| 799 | 772826264096874500 | NaN | NaN | 2016-09-05 15:58:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Roosevelt. He's preparing for takeoff. Ma... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772826264... | 11 | 10 | Roosevelt | None | None | None | None |
| 800 | 772615324260794368 | NaN | NaN | 2016-09-05 02:00:22 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Gromit. He's pupset bec... | 7.652221e+17 | 4.196984e+09 | 2016-08-15 16:22:20 +0000 | https://twitter.com/dog_rates/status/765222098... | 10 | 10 | Gromit | None | None | None | None |
| 801 | 772581559778025472 | NaN | NaN | 2016-09-04 23:46:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys this is getting so out of hand. We only r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772581559... | 10 | 10 | a | None | None | None | None |
| 802 | 772193107915964416 | NaN | NaN | 2016-09-03 22:02:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Willem. He's a Penn State pupper. Thin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772193107... | 12 | 10 | Willem | None | None | pupper | None |
| 803 | 772152991789019136 | NaN | NaN | 2016-09-03 19:23:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a couple rufferees making sure all the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772152991... | 10 | 10 | None | None | None | None | None |
| 804 | 772117678702071809 | NaN | NaN | 2016-09-03 17:02:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jack. He's a Clemson pup. Appears to be r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772117678... | 12 | 10 | Jack | None | None | None | None |
| 805 | 772114945936949249 | NaN | NaN | 2016-09-03 16:52:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finn. He's very nervous for the game. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772114945... | 10 | 10 | Finn | None | None | None | None |
| 806 | 772102971039580160 | NaN | NaN | 2016-09-03 16:04:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She's an OU cheerleader. About ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/772102971... | 11 | 10 | Penny | None | None | None | None |
| 807 | 771908950375665664 | NaN | NaN | 2016-09-03 03:13:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Doggo will persevere. 13/10\nhttps://t.co/yOVz... | NaN | NaN | NaN | https://twitter.com/yahoonews/status/771905568... | 13 | 10 | None | doggo | None | None | None |
| 808 | 771770456517009408 | NaN | NaN | 2016-09-02 18:03:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Davey. He'll have your daughter home b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771770456... | 11 | 10 | Davey | None | None | None | None |
| 809 | 771500966810099713 | NaN | NaN | 2016-09-02 00:12:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dakota. He's just saying hi. That's al... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771500966... | 12 | 10 | Dakota | None | None | None | None |
| 810 | 771380798096281600 | NaN | NaN | 2016-09-01 16:14:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Fizz. She thinks love is a social constru... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771380798... | 11 | 10 | Fizz | None | None | None | None |
| 811 | 771171053431250945 | NaN | NaN | 2016-09-01 02:21:21 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Frankie. He's wearing b... | 6.733201e+17 | 4.196984e+09 | 2015-12-06 01:56:44 +0000 | https://twitter.com/dog_rates/status/673320132... | 11 | 10 | Frankie | None | None | None | None |
| 812 | 771136648247640064 | NaN | NaN | 2016-09-01 00:04:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dixie. She wants to be a ship captain.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771136648... | 11 | 10 | Dixie | None | None | None | None |
| 813 | 771102124360998913 | NaN | NaN | 2016-08-31 21:47:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He works for @TODAYshow. Supe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771102124... | 12 | 10 | Charlie | None | None | None | None |
| 814 | 771014301343748096 | NaN | NaN | 2016-08-31 15:58:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Another pic without a dog in it? What am I sup... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/771014301... | 7 | 10 | None | None | None | None | None |
| 815 | 771004394259247104 | NaN | NaN | 2016-08-31 15:19:06 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @katieornah: @dog_rates learning a lot at c... | 7.710021e+17 | 1.732729e+09 | 2016-08-31 15:10:07 +0000 | https://twitter.com/katieornah/status/77100213... | 12 | 10 | None | None | None | pupper | None |
| 816 | 770787852854652928 | NaN | NaN | 2016-08-31 00:58:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Winston. His tongue has gone rogue. Do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770787852... | 10 | 10 | Winston | None | None | None | None |
| 817 | 770772759874076672 | NaN | NaN | 2016-08-30 23:58:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sebastian. He's super h*ckin fluffy. T... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770772759... | 11 | 10 | Sebastian | None | None | None | None |
| 818 | 770743923962707968 | NaN | NaN | 2016-08-30 22:04:05 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Here's a doggo blowing bubbles.... | 7.392382e+17 | 4.196984e+09 | 2016-06-04 23:31:25 +0000 | https://twitter.com/dog_rates/status/739238157... | 13 | 10 | None | doggo | None | None | None |
| 819 | 770655142660169732 | NaN | NaN | 2016-08-30 16:11:18 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Pls stop sending in non-can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770655142... | 11 | 10 | very | None | None | None | None |
| 820 | 770414278348247044 | NaN | NaN | 2016-08-30 00:14:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Al Cabone. He's a gangsta puppa. Rather h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770414278... | 11 | 10 | Al | None | None | None | None |
| 821 | 770293558247038976 | NaN | NaN | 2016-08-29 16:14:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jackson. There's nothing abnormal abou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770293558... | 10 | 10 | Jackson | None | None | None | None |
| 822 | 770093767776997377 | NaN | NaN | 2016-08-29 03:00:36 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is just downright precious... | 7.410673e+17 | 4.196984e+09 | 2016-06-10 00:39:48 +0000 | https://twitter.com/dog_rates/status/741067306... | 12 | 10 | just | doggo | None | pupper | None |
| 823 | 770069151037685760 | NaN | NaN | 2016-08-29 01:22:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Carbon. This is his first time sw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/770069151... | 10 | 10 | Carbon | None | None | None | None |
| 824 | 769940425801170949 | NaN | NaN | 2016-08-28 16:51:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Klein. These pics were taken a month a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/769940425... | 12 | 10 | Klein | None | None | None | None |
| 825 | 769695466921623552 | NaN | NaN | 2016-08-28 00:37:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Titan. He's trying to make friends. Of... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/769695466... | 13 | 10 | Titan | None | None | None | None |
| 826 | 769335591808995329 | NaN | NaN | 2016-08-27 00:47:53 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Ever seen a dog pet another dog... | 7.069045e+17 | 4.196984e+09 | 2016-03-07 18:09:06 +0000 | https://vine.co/v/iXQAm5Lrgrh,https://vine.co/... | 13 | 10 | None | None | None | None | None |
| 827 | 769212283578875904 | NaN | NaN | 2016-08-26 16:37:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is DonDon. He's way up but doesn't feel b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/769212283... | 12 | 10 | DonDon | None | None | None | None |
| 828 | 768970937022709760 | NaN | NaN | 2016-08-26 00:38:52 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Kirby. His bowl weighs more than him. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768970937... | 12 | 10 | Kirby | None | None | None | None |
| 829 | 768909767477751808 | NaN | NaN | 2016-08-25 20:35:48 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: When it's Janet from accounting... | 7.001438e+17 | 4.196984e+09 | 2016-02-18 02:24:13 +0000 | https://twitter.com/dog_rates/status/700143752... | 10 | 10 | None | None | None | pupper | None |
| 830 | 768855141948723200 | NaN | NaN | 2016-08-25 16:58:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jesse. He really wants a belly rub. Wi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768855141... | 11 | 10 | Jesse | None | None | None | None |
| 831 | 768609597686943744 | NaN | NaN | 2016-08-25 00:43:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lou. His sweater is too small and he a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768609597... | 10 | 10 | Lou | None | None | None | None |
| 832 | 768596291618299904 | NaN | NaN | 2016-08-24 23:50:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Oakley and Charlie. They're convi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768596291... | 12 | 10 | Oakley | None | None | None | None |
| 833 | 768554158521745409 | NaN | NaN | 2016-08-24 21:02:45 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Nollie. She's waving at... | 7.399792e+17 | 4.196984e+09 | 2016-06-07 00:36:02 +0000 | https://twitter.com/dog_rates/status/739979191... | 12 | 10 | Nollie | None | None | None | None |
| 834 | 768473857036525572 | NaN | NaN | 2016-08-24 15:43:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Chevy. He had a late breakfast and now ha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768473857... | 11 | 10 | Chevy | None | None | None | None |
| 835 | 768193404517830656 | NaN | NaN | 2016-08-23 21:09:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Gerald. He's a fairly exotic doggo. Floof... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/768193404... | 8 | 10 | Gerald | doggo | None | None | None |
| 836 | 767884188863397888 | NaN | NaN | 2016-08-23 00:40:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tito. He's on the lookout. Nobody know... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767884188... | 10 | 10 | Tito | None | None | None | None |
| 837 | 767754930266464257 | NaN | NaN | 2016-08-22 16:06:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Philbert. His toilet broke and he does... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767754930... | 11 | 10 | Philbert | None | None | None | None |
| 838 | 767500508068192258 | NaN | NaN | 2016-08-21 23:15:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louie. He's making quite a h*ckin mess... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767500508... | 12 | 10 | Louie | None | None | None | None |
| 839 | 767191397493538821 | NaN | NaN | 2016-08-21 02:47:37 +0000 | <a href="http://twitter.com/download/iphone" r... | I don't know any of the backstory behind this ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767191397... | 13 | 10 | None | doggo | None | None | None |
| 840 | 767122157629476866 | NaN | NaN | 2016-08-20 22:12:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rupert. You betrayed him with bath tim... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/767122157... | 13 | 10 | Rupert | None | None | None | None |
| 841 | 766864461642756096 | NaN | NaN | 2016-08-20 05:08:29 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: We only rate dogs... this is a ... | 7.599238e+17 | 4.196984e+09 | 2016-08-01 01:28:46 +0000 | https://twitter.com/dog_rates/status/759923798... | 10 | 10 | None | None | None | None | None |
| 842 | 766793450729734144 | NaN | NaN | 2016-08-20 00:26:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rufus. He just missed out on the 100m ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766793450... | 10 | 10 | Rufus | None | None | None | None |
| 843 | 766714921925144576 | 7.667118e+17 | 4.196984e+09 | 2016-08-19 19:14:16 +0000 | <a href="http://twitter.com/download/iphone" r... | His name is Charley and he already has a new s... | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 844 | 766693177336135680 | NaN | NaN | 2016-08-19 17:47:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brudge. He's a Doberdog. Going to be h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766693177... | 11 | 10 | Brudge | None | None | None | None |
| 845 | 766423258543644672 | NaN | NaN | 2016-08-18 23:55:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shadoe. Her tongue flies out of her mo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766423258... | 9 | 10 | Shadoe | None | None | None | None |
| 846 | 766313316352462849 | NaN | NaN | 2016-08-18 16:38:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oscar. He has legendary eyebrows and h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766313316... | 12 | 10 | Oscar | None | None | None | None |
| 847 | 766078092750233600 | NaN | NaN | 2016-08-18 01:03:45 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Colby. He's currently r... | 7.258423e+17 | 4.196984e+09 | 2016-04-29 00:21:01 +0000 | https://twitter.com/dog_rates/status/725842289... | 12 | 10 | Colby | None | None | None | None |
| 848 | 766069199026450432 | NaN | NaN | 2016-08-18 00:28:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Juno. She can see your future. 12/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766069199... | 12 | 10 | Juno | None | None | None | None |
| 849 | 766008592277377025 | NaN | NaN | 2016-08-17 20:27:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Angel. She stole the @ShopWeRateDogs s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/766008592... | 11 | 10 | Angel | None | None | None | None |
| 850 | 765719909049503744 | NaN | NaN | 2016-08-17 01:20:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brat. He has a hard time being ferocio... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765719909... | 12 | 10 | Brat | None | None | None | None |
| 851 | 765669560888528897 | NaN | NaN | 2016-08-16 22:00:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tove. She's a Balsamic Poinsetter. Sur... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765669560... | 12 | 10 | Tove | None | None | None | None |
| 852 | 765395769549590528 | NaN | NaN | 2016-08-16 03:52:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is my dog. Her name is Zoey. She knows I'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765395769... | 13 | 10 | my | None | None | None | None |
| 853 | 765371061932261376 | NaN | NaN | 2016-08-16 02:14:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louie. He's had a long day. Did a lot ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765371061... | 11 | 10 | Louie | None | None | pupper | None |
| 854 | 765222098633691136 | NaN | NaN | 2016-08-15 16:22:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gromit. He's pupset because there's no... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/765222098... | 10 | 10 | Gromit | None | None | None | None |
| 855 | 764857477905154048 | NaN | NaN | 2016-08-14 16:13:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Aubie. He has paws for days. Nibbling ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/764857477... | 12 | 10 | Aubie | None | None | None | None |
| 856 | 764259802650378240 | NaN | NaN | 2016-08-13 00:38:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kota and her son Benedict. She doesn't... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/764259802... | 10 | 10 | Kota | None | None | None | None |
| 857 | 763956972077010945 | 7.638652e+17 | 1.584641e+07 | 2016-08-12 04:35:10 +0000 | <a href="http://twitter.com/download/iphone" r... | @TheEllenShow I'm not sure if you know this bu... | NaN | NaN | NaN | NaN | 12 | 10 | None | doggo | None | None | None |
| 858 | 763837565564780549 | NaN | NaN | 2016-08-11 20:40:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alfie. He's touching a butt. Couldn't ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/763837565... | 11 | 10 | Alfie | None | None | None | None |
| 859 | 763183847194451968 | NaN | NaN | 2016-08-10 01:23:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clark. He collects teddy bears. It's a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/763183847... | 8 | 10 | Clark | None | None | None | None |
| 860 | 763167063695355904 | NaN | NaN | 2016-08-10 00:16:21 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Meet Eve. She's a raging alcoho... | 6.732953e+17 | 4.196984e+09 | 2015-12-06 00:17:55 +0000 | https://twitter.com/dog_rates/status/673295268... | 8 | 10 | Eve | None | None | pupper | None |
| 861 | 763103485927849985 | NaN | NaN | 2016-08-09 20:03:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Belle. She's a Butterflop Hufflepoof. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/763103485... | 10 | 10 | Belle | None | None | None | None |
| 862 | 762699858130116608 | NaN | NaN | 2016-08-08 17:19:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leela. She's a Fetty Woof. Lost eye wh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762699858... | 11 | 10 | Leela | None | None | None | None |
| 863 | 762471784394268675 | NaN | NaN | 2016-08-08 02:13:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Glenn. Being in public scares him. Fright... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762471784... | 12 | 10 | Glenn | None | None | None | None |
| 864 | 762464539388485633 | NaN | NaN | 2016-08-08 01:44:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Buddy. His father was a bear and his m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762464539... | 12 | 10 | Buddy | None | None | None | None |
| 865 | 762316489655476224 | NaN | NaN | 2016-08-07 15:56:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scout. He specializes in mid-air freez... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762316489... | 11 | 10 | Scout | None | None | None | None |
| 866 | 762035686371364864 | NaN | NaN | 2016-08-06 21:20:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This left me speechless. 14/10 heckin heroic a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/762035686... | 14 | 10 | None | None | None | None | None |
| 867 | 761976711479193600 | NaN | NaN | 2016-08-06 17:26:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shelby. She finds stuff to put on her ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761976711... | 12 | 10 | Shelby | None | None | None | None |
| 868 | 761750502866649088 | NaN | NaN | 2016-08-06 02:27:27 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: "Tristan do not speak to me wit... | 6.853251e+17 | 4.196984e+09 | 2016-01-08 05:00:14 +0000 | https://twitter.com/dog_rates/status/685325112... | 10 | 10 | None | None | None | None | None |
| 869 | 761745352076779520 | NaN | NaN | 2016-08-06 02:06:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys.. we only rate dogs. Pls don't send any m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761745352... | 11 | 10 | None | None | None | None | None |
| 870 | 761672994376806400 | NaN | NaN | 2016-08-05 21:19:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Ohboyohboyohboyohboyohboyohboyohboyohboyohboyo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761672994... | 10 | 10 | None | None | None | None | None |
| 871 | 761599872357261312 | NaN | NaN | 2016-08-05 16:28:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sephie. According to this picture, she... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761599872... | 11 | 10 | Sephie | None | None | None | None |
| 872 | 761371037149827077 | NaN | NaN | 2016-08-05 01:19:35 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Oh. My. God. 13/10 magical af h... | 7.116948e+17 | 4.196984e+09 | 2016-03-20 23:23:54 +0000 | https://twitter.com/dog_rates/status/711694788... | 13 | 10 | None | None | None | None | None |
| 873 | 761334018830917632 | NaN | NaN | 2016-08-04 22:52:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bruce. I really want to hear the joke ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761334018... | 10 | 10 | Bruce | None | None | None | None |
| 874 | 761292947749015552 | NaN | NaN | 2016-08-04 20:09:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Bonaparte. He's pupset because it's cloud... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761292947... | 11 | 10 | Bonaparte | None | None | None | None |
| 875 | 761227390836215808 | NaN | NaN | 2016-08-04 15:48:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Albert. He just found out that bees ar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761227390... | 10 | 10 | Albert | None | None | None | None |
| 876 | 761004547850530816 | NaN | NaN | 2016-08-04 01:03:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bo and Ty. Bo eats paper and Ty felt l... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/761004547... | 11 | 10 | Bo | None | None | None | None |
| 877 | 760893934457552897 | NaN | NaN | 2016-08-03 17:43:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wishes. He has the day off. Daily stru... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760893934... | 11 | 10 | Wishes | doggo | None | None | None |
| 878 | 760656994973933572 | NaN | NaN | 2016-08-03 02:02:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rose. Her face is stuck like that. 11/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760656994... | 11 | 10 | Rose | None | None | None | None |
| 879 | 760641137271070720 | NaN | NaN | 2016-08-03 00:59:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Theo. He can walk on water. Still comi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760641137... | 12 | 10 | Theo | None | None | None | None |
| 880 | 760539183865880579 | NaN | NaN | 2016-08-02 18:14:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Atlas. Swinging is his passion. 12/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760539183... | 12 | 10 | Atlas | None | None | None | None |
| 881 | 760521673607086080 | NaN | NaN | 2016-08-02 17:04:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Doggo want what doggo cannot have. Temptation ... | NaN | NaN | NaN | https://vine.co/v/5ApKetxzmTB | 12 | 10 | None | doggo | None | None | None |
| 882 | 760290219849637889 | NaN | NaN | 2016-08-02 01:44:48 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Rocco. He's doing his best. 13/10 some... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760290219... | 13 | 10 | Rocco | None | None | None | None |
| 883 | 760252756032651264 | NaN | NaN | 2016-08-01 23:15:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fido. He can tell the weather. Not goo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760252756... | 4 | 10 | Fido | None | None | None | None |
| 884 | 760190180481531904 | NaN | NaN | 2016-08-01 19:07:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sadie. She's addicted to balloons. It's t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/760190180... | 10 | 10 | Sadie | None | None | None | None |
| 885 | 760153949710192640 | NaN | NaN | 2016-08-01 16:43:19 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @hownottodraw: The story/person behind @dog... | 7.601538e+17 | 1.950368e+08 | 2016-08-01 16:42:51 +0000 | https://weratedogs.com/pages/about-us,https://... | 11 | 10 | None | None | None | None | None |
| 886 | 759943073749200896 | NaN | NaN | 2016-08-01 02:45:22 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here's a wicked fast pupper. 12/10 camera coul... | NaN | NaN | NaN | https://vine.co/v/5AJm5pq7Kav | 12 | 10 | None | None | None | pupper | None |
| 887 | 759923798737051648 | NaN | NaN | 2016-08-01 01:28:46 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs... this is a Taiwanese Guide... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759923798... | 10 | 10 | None | None | None | None | None |
| 888 | 759846353224826880 | NaN | NaN | 2016-07-31 20:21:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kirby. He's a Beneblip Cumberpat. Pret... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759846353... | 11 | 10 | Kirby | None | None | None | None |
| 889 | 759793422261743616 | NaN | NaN | 2016-07-31 16:50:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Maggie & Lila. Maggie is the doggo, L... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759793422... | 12 | 10 | Maggie | doggo | None | pupper | None |
| 890 | 759566828574212096 | NaN | NaN | 2016-07-31 01:50:18 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This... is a Tyrannosaurus rex.... | 7.395441e+17 | 4.196984e+09 | 2016-06-05 19:47:03 +0000 | https://twitter.com/dog_rates/status/739544079... | 10 | 10 | None | None | None | None | None |
| 891 | 759557299618865152 | NaN | NaN | 2016-07-31 01:12:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Emma. She can't believe her last guess... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759557299... | 10 | 10 | Emma | None | None | None | None |
| 892 | 759447681597108224 | NaN | NaN | 2016-07-30 17:56:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oakley. He has no idea what happened h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759447681... | 11 | 10 | Oakley | None | None | None | None |
| 893 | 759446261539934208 | NaN | NaN | 2016-07-30 17:51:13 +0000 | <a href="http://twitter.com/download/iphone" r... | No no no this is all wrong. The Walmart had to... | NaN | NaN | NaN | https://twitter.com/wsaznews/status/7591675587... | 10 | 10 | None | None | None | None | None |
| 894 | 759197388317847553 | NaN | NaN | 2016-07-30 01:22:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Luna. She's just heckin precious af I ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759197388... | 12 | 10 | Luna | None | None | None | None |
| 895 | 759159934323924993 | NaN | NaN | 2016-07-29 22:53:27 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 ht... | 6.703191e+17 | 4.196984e+09 | 2015-11-27 19:11:49 +0000 | https://twitter.com/dog_rates/status/670319130... | 11 | 10 | None | None | None | None | None |
| 896 | 759099523532779520 | NaN | NaN | 2016-07-29 18:53:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Toby. He has a drinking problem. Inflatab... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759099523... | 7 | 10 | Toby | None | None | None | None |
| 897 | 759047813560868866 | NaN | NaN | 2016-07-29 15:27:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Spencer. He's part of the Queen's Guar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/759047813... | 11 | 10 | Spencer | None | None | None | None |
| 898 | 758854675097526272 | NaN | NaN | 2016-07-29 02:40:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lilli Bee & Honey Bear. Unfortunat... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758854675... | 11 | 10 | Lilli | None | None | None | None |
| 899 | 758828659922702336 | NaN | NaN | 2016-07-29 00:57:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This doggo is just waiting for someone to be p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758828659... | 13 | 10 | None | doggo | None | None | None |
| 900 | 758740312047005698 | NaN | NaN | 2016-07-28 19:06:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Boston. He's worried because his tongue w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758740312... | 12 | 10 | Boston | None | None | None | None |
| 901 | 758474966123810816 | NaN | NaN | 2016-07-28 01:31:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brandonald. He accidentally opened the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758474966... | 11 | 10 | Brandonald | None | None | None | None |
| 902 | 758467244762497024 | NaN | NaN | 2016-07-28 01:00:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Why does this never happen at my front door...... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758467244... | 165 | 150 | None | None | None | None | None |
| 903 | 758405701903519748 | NaN | NaN | 2016-07-27 20:56:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Odie. He falls asleep wherever he want... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758405701... | 10 | 10 | Odie | None | None | None | None |
| 904 | 758355060040593408 | NaN | NaN | 2016-07-27 17:35:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Corey. He's a Portobello Corgicool. Tr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758355060... | 11 | 10 | Corey | None | None | None | None |
| 905 | 758099635764359168 | NaN | NaN | 2016-07-27 00:40:12 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | In case you haven't seen the most dramatic sne... | NaN | NaN | NaN | https://vine.co/v/hQJbaj1VpIz | 13 | 10 | None | None | None | None | None |
| 906 | 758041019896193024 | NaN | NaN | 2016-07-26 20:47:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Teagan reads entire books in store so they're ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/758041019... | 9 | 10 | None | None | None | None | None |
| 907 | 757741869644341248 | NaN | NaN | 2016-07-26 00:58:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leonard. He hides in bushes to escape ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757741869... | 10 | 10 | Leonard | None | None | None | None |
| 908 | 757729163776290825 | NaN | NaN | 2016-07-26 00:08:05 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Chompsky. He lives up t... | 6.790626e+17 | 4.196984e+09 | 2015-12-21 22:15:18 +0000 | https://twitter.com/dog_rates/status/679062614... | 11 | 10 | Chompsky | None | None | None | None |
| 909 | 757725642876129280 | NaN | NaN | 2016-07-25 23:54:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Beckham. He fell asleep at the wheel. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757725642... | 11 | 10 | Beckham | None | None | None | None |
| 910 | 757611664640446465 | NaN | NaN | 2016-07-25 16:21:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He tries to come across as fei... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757611664... | 12 | 10 | Cooper | None | None | None | None |
| 911 | 757597904299253760 | NaN | NaN | 2016-07-25 15:26:30 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @jon_hill987: @dog_rates There is a cunning... | 7.575971e+17 | 2.804798e+08 | 2016-07-25 15:23:28 +0000 | https://twitter.com/jon_hill987/status/7575971... | 11 | 10 | None | None | None | pupper | None |
| 912 | 757596066325864448 | NaN | NaN | 2016-07-25 15:19:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's another picture without a dog in it. Id... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757596066... | 4 | 10 | None | None | None | None | None |
| 913 | 757400162377592832 | NaN | NaN | 2016-07-25 02:20:45 +0000 | <a href="http://twitter.com/download/iphone" r... | She walks herself up and down the train to be ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757400162... | 13 | 10 | None | None | None | None | None |
| 914 | 757393109802180609 | NaN | NaN | 2016-07-25 01:52:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo completely oblivious to the dou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757393109... | 10 | 10 | None | doggo | None | None | None |
| 915 | 757354760399941633 | NaN | NaN | 2016-07-24 23:20:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Devón (pronounced "Eric"). He forgot h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/757354760... | 8 | 10 | Devón | None | None | None | None |
| 916 | 756998049151549440 | NaN | NaN | 2016-07-23 23:42:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. He's an English Creamschnitzel... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756998049... | 11 | 10 | Oliver | None | None | None | None |
| 917 | 756939218950160384 | NaN | NaN | 2016-07-23 19:49:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jax. He is a majestic mountain pupper.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756939218... | 12 | 10 | Jax | None | None | pupper | None |
| 918 | 756651752796094464 | NaN | NaN | 2016-07-23 00:46:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gert. He just wants you to be happy. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756651752... | 11 | 10 | Gert | None | None | None | None |
| 919 | 756526248105566208 | NaN | NaN | 2016-07-22 16:28:07 +0000 | <a href="http://twitter.com/download/iphone" r... | All hail sky doggo. 13/10 would jump super hig... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756526248... | 13 | 10 | None | doggo | None | None | None |
| 920 | 756303284449767430 | NaN | NaN | 2016-07-22 01:42:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Pwease accept dis rose on behalf of dog. 11/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756303284... | 11 | 10 | None | None | None | None | None |
| 921 | 756288534030475264 | NaN | NaN | 2016-07-22 00:43:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a heartwarming scene of a single father... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756288534... | 12 | 10 | None | None | None | None | None |
| 922 | 756275833623502848 | NaN | NaN | 2016-07-21 23:53:04 +0000 | <a href="http://twitter.com/download/iphone" r... | When ur older siblings get to play in the deep... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/756275833... | 10 | 10 | None | None | None | None | puppo |
| 923 | 755955933503782912 | NaN | NaN | 2016-07-21 02:41:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a frustrated pupper attempting to escap... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755955933... | 12 | 10 | None | None | None | pupper | None |
| 924 | 755206590534418437 | NaN | NaN | 2016-07-19 01:04:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is one of the most inspirational stories ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755206590... | 14 | 10 | one | doggo | None | None | None |
| 925 | 755110668769038337 | NaN | NaN | 2016-07-18 18:43:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Watson. He trust falls on command. 13/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/755110668... | 13 | 10 | Watson | None | None | None | None |
| 926 | 754874841593970688 | NaN | NaN | 2016-07-18 03:06:01 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Rubio. He has too much ... | 6.791584e+17 | 4.196984e+09 | 2015-12-22 04:35:49 +0000 | https://twitter.com/dog_rates/status/679158373... | 11 | 10 | Rubio | None | None | None | None |
| 927 | 754856583969079297 | NaN | NaN | 2016-07-18 01:53:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Winnie. She's not a fan of the fast mo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754856583... | 11 | 10 | Winnie | None | None | None | None |
| 928 | 754747087846248448 | NaN | NaN | 2016-07-17 18:38:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Keith. He's pursuing a more 2D lifesty... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754747087... | 12 | 10 | Keith | None | None | None | None |
| 929 | 754482103782404096 | NaN | NaN | 2016-07-17 01:05:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Milo. He's currently plotting his reve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754482103... | 10 | 10 | Milo | None | None | None | None |
| 930 | 754449512966619136 | NaN | NaN | 2016-07-16 22:55:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dex. He can see into your past and fut... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754449512... | 11 | 10 | Dex | None | None | None | None |
| 931 | 754120377874386944 | NaN | NaN | 2016-07-16 01:08:03 +0000 | <a href="http://twitter.com/download/iphone" r... | When you hear your owner say they need to hatc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754120377... | 10 | 10 | None | None | None | None | None |
| 932 | 754011816964026368 | NaN | NaN | 2016-07-15 17:56:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He pouts until he gets to go ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/754011816... | 12 | 10 | Charlie | None | None | None | None |
| 933 | 753655901052166144 | NaN | NaN | 2016-07-14 18:22:23 +0000 | <a href="http://twitter.com/download/iphone" r... | "The dogtor is in hahahaha no but seriously I'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753655901... | 10 | 10 | None | None | None | None | None |
| 934 | 753420520834629632 | NaN | NaN | 2016-07-14 02:47:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we are witnessing an isolated squad of bo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753420520... | 11 | 10 | None | None | None | None | None |
| 935 | 753398408988139520 | NaN | NaN | 2016-07-14 01:19:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scout. Her batteries are low. 12/10 pr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753398408... | 12 | 10 | Scout | None | None | None | None |
| 936 | 753375668877008896 | NaN | NaN | 2016-07-13 23:48:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hank. He's mischievous af. Doesn't eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753375668... | 8 | 10 | Hank | None | None | None | None |
| 937 | 753298634498793472 | NaN | NaN | 2016-07-13 18:42:44 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Carly. She's actually 2... | 6.815232e+17 | 4.196984e+09 | 2015-12-28 17:12:42 +0000 | https://twitter.com/dog_rates/status/681523177... | 12 | 10 | Carly | None | None | None | None |
| 938 | 753294487569522689 | NaN | NaN | 2016-07-13 18:26:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ace. He's a window washer. One of the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753294487... | 11 | 10 | Ace | None | None | None | None |
| 939 | 753039830821511168 | NaN | NaN | 2016-07-13 01:34:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | So this just changed my life. 13/10 please enj... | NaN | NaN | NaN | https://vine.co/v/5W2Dg3XPX7a | 13 | 10 | None | None | None | None | None |
| 940 | 753026973505581056 | NaN | NaN | 2016-07-13 00:43:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Tayzie. She's a Barbadian Bugaboo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/753026973... | 10 | 10 | Tayzie | None | None | None | None |
| 941 | 752932432744185856 | NaN | NaN | 2016-07-12 18:27:35 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Carl. He's very powerful. 12/10 don't ... | NaN | NaN | NaN | https://vine.co/v/OEppMFbejFz | 12 | 10 | Carl | None | None | None | None |
| 942 | 752917284578922496 | NaN | NaN | 2016-07-12 17:27:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Grizzie. She's a semi-submerged Bahrai... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752917284... | 11 | 10 | Grizzie | None | None | None | None |
| 943 | 752701944171524096 | NaN | NaN | 2016-07-12 03:11:42 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: HEY PUP WHAT'S THE PART OF THE ... | 6.835159e+17 | 4.196984e+09 | 2016-01-03 05:11:12 +0000 | https://vine.co/v/ibvnzrauFuV,https://vine.co/... | 11 | 10 | None | None | None | None | None |
| 944 | 752682090207055872 | NaN | NaN | 2016-07-12 01:52:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Nothing better than a doggo and a sunset. 10/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752682090... | 10 | 10 | None | doggo | None | None | None |
| 945 | 752660715232722944 | NaN | NaN | 2016-07-12 00:27:52 +0000 | <a href="http://twitter.com/download/iphone" r... | Hooman used Pokeball\n*wiggle*\n*wiggle*\nDogg... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752660715... | 10 | 10 | None | doggo | None | None | None |
| 946 | 752568224206688256 | NaN | NaN | 2016-07-11 18:20:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here are three doggos completely misjudging an... | NaN | NaN | NaN | https://vine.co/v/5W0bdhEUUVT | 9 | 10 | None | None | None | None | None |
| 947 | 752519690950500352 | NaN | NaN | 2016-07-11 15:07:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Hopefully this puppo on a swing will help get ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752519690... | 11 | 10 | None | None | None | None | puppo |
| 948 | 752334515931054080 | NaN | NaN | 2016-07-11 02:51:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo trying to catch some fish. 8/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752334515... | 8 | 10 | None | doggo | None | None | None |
| 949 | 752309394570878976 | NaN | NaN | 2016-07-11 01:11:51 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Everyone needs to watch this. 1... | 6.753544e+17 | 4.196984e+09 | 2015-12-11 16:40:19 +0000 | https://twitter.com/dog_rates/status/675354435... | 13 | 10 | None | None | None | None | None |
| 950 | 752173152931807232 | NaN | NaN | 2016-07-10 16:10:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brody. He's a lifeguard. Always prepar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/752173152... | 12 | 10 | Brody | None | None | None | None |
| 951 | 751950017322246144 | NaN | NaN | 2016-07-10 01:23:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Lola. She's a surfing pupper. 13/10 ma... | NaN | NaN | NaN | https://vine.co/v/5WrjaYAMvMO | 13 | 10 | Lola | None | None | pupper | None |
| 952 | 751937170840121344 | NaN | NaN | 2016-07-10 00:32:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ruby. Her ice cube is melting. She doe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751937170... | 11 | 10 | Ruby | None | None | None | None |
| 953 | 751830394383790080 | NaN | NaN | 2016-07-09 17:28:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He's very camera shy. 12/10 wo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751830394... | 12 | 10 | Tucker | None | None | None | None |
| 954 | 751793661361422336 | NaN | NaN | 2016-07-09 15:02:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Fred. He's having one heck of a summer... | NaN | NaN | NaN | https://vine.co/v/5W5YHdTJvaV | 11 | 10 | Fred | None | None | None | None |
| 955 | 751598357617971201 | NaN | NaN | 2016-07-09 02:06:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Toby. A cat got his tongue. 13/10 ador... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751598357... | 13 | 10 | Toby | None | None | None | None |
| 956 | 751583847268179968 | NaN | NaN | 2016-07-09 01:08:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Please stop sending it pictures that don't eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751583847... | 5 | 10 | None | doggo | None | pupper | None |
| 957 | 751538714308972544 | NaN | NaN | 2016-07-08 22:09:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Max. She has one ear that's always sli... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751538714... | 10 | 10 | Max | None | None | None | None |
| 958 | 751456908746354688 | NaN | NaN | 2016-07-08 16:44:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper that's very hungry but too laz... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751456908... | 12 | 10 | None | None | None | pupper | None |
| 959 | 751251247299190784 | NaN | NaN | 2016-07-08 03:07:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gilbert. He's being chased by a battal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751251247... | 10 | 10 | Gilbert | None | None | None | None |
| 960 | 751205363882532864 | NaN | NaN | 2016-07-08 00:04:50 +0000 | <a href="http://twitter.com/download/iphone" r... | "This photographer took pics of her best frien... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751205363... | 12 | 10 | None | None | None | None | None |
| 961 | 751132876104687617 | NaN | NaN | 2016-07-07 19:16:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He's just so damn happy. 10/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/751132876... | 10 | 10 | Cooper | None | None | None | puppo |
| 962 | 750868782890057730 | NaN | NaN | 2016-07-07 01:47:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Milo. He hauled ass until he ran out of t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750868782... | 11 | 10 | Milo | None | None | pupper | None |
| 963 | 750719632563142656 | NaN | NaN | 2016-07-06 15:54:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Meyer. He has to hold somebody's hand ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750719632... | 12 | 10 | Meyer | None | None | None | None |
| 964 | 750506206503038976 | NaN | NaN | 2016-07-06 01:46:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Malcolm. He's absolutely terrified of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750506206... | 8 | 10 | Malcolm | None | None | pupper | None |
| 965 | 750429297815552001 | NaN | NaN | 2016-07-05 20:41:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Arnie. He's a Nova Scotian Fridge Floo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750429297... | 12 | 10 | Arnie | None | None | None | None |
| 966 | 750383411068534784 | NaN | NaN | 2016-07-05 17:38:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zoe. She was trying to stealthily take... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750383411... | 9 | 10 | Zoe | None | None | pupper | None |
| 967 | 750381685133418496 | 7.501805e+17 | 4.717297e+09 | 2016-07-05 17:31:49 +0000 | <a href="http://twitter.com/download/iphone" r... | 13/10 such a good doggo\n@spaghemily | NaN | NaN | NaN | NaN | 13 | 10 | None | doggo | None | None | None |
| 968 | 750147208377409536 | NaN | NaN | 2016-07-05 02:00:06 +0000 | <a href="http://twitter.com/download/iphone" r... | And finally, happy 4th of July from the squad ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750147208... | 13 | 10 | None | None | None | None | None |
| 969 | 750132105863102464 | NaN | NaN | 2016-07-05 01:00:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stewie. He will roundhouse kick anyone... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750132105... | 11 | 10 | Stewie | None | None | None | None |
| 970 | 750117059602808832 | NaN | NaN | 2016-07-05 00:00:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Calvin. He just loves America so much.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750117059... | 10 | 10 | Calvin | None | None | None | None |
| 971 | 750101899009982464 | NaN | NaN | 2016-07-04 23:00:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lilah. She agreed on one quick pic. Now s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750101899... | 11 | 10 | Lilah | None | None | None | None |
| 972 | 750086836815486976 | NaN | NaN | 2016-07-04 22:00:12 +0000 | <a href="https://about.twitter.com/products/tw... | This is Spanky. He was a member of the 2002 US... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750086836... | 12 | 10 | Spanky | None | None | None | None |
| 973 | 750071704093859840 | NaN | NaN | 2016-07-04 21:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Pause your cookout and admire this pupper's ni... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750071704... | 10 | 10 | None | None | None | pupper | None |
| 974 | 750056684286914561 | NaN | NaN | 2016-07-04 20:00:23 +0000 | <a href="https://about.twitter.com/products/tw... | This is Jameson. He had a few too many in the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750056684... | 11 | 10 | Jameson | None | None | None | None |
| 975 | 750041628174217216 | NaN | NaN | 2016-07-04 19:00:33 +0000 | <a href="https://about.twitter.com/products/tw... | This is Beau. He's trying to keep his daddy fr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750041628... | 13 | 10 | Beau | None | None | None | None |
| 976 | 750026558547456000 | NaN | NaN | 2016-07-04 18:00:41 +0000 | <a href="https://about.twitter.com/products/tw... | Meet Jax & Jil. Jil is yelling the pledge ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750026558... | 10 | 10 | Jax | None | None | None | None |
| 977 | 750011400160841729 | NaN | NaN | 2016-07-04 17:00:26 +0000 | <a href="https://about.twitter.com/products/tw... | Meet Piper. She's an airport doggo. Please ret... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/750011400... | 11 | 10 | Piper | doggo | None | None | None |
| 978 | 749996283729883136 | NaN | NaN | 2016-07-04 16:00:22 +0000 | <a href="https://about.twitter.com/products/tw... | This is Bo. He emanates happiness. 12/10 I cou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749996283... | 12 | 10 | Bo | None | None | None | None |
| 979 | 749981277374128128 | NaN | NaN | 2016-07-04 15:00:45 +0000 | <a href="https://about.twitter.com/products/tw... | This is Atticus. He's quite simply America af.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749981277... | 1776 | 10 | Atticus | None | None | None | None |
| 980 | 749774190421639168 | NaN | NaN | 2016-07-04 01:17:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She's a Benebop Cumberplop. 12/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749774190... | 12 | 10 | Lucy | None | None | None | None |
| 981 | 749417653287129088 | NaN | NaN | 2016-07-03 01:41:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finn. He's the most unphotogenic puppe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749417653... | 11 | 10 | Finn | None | None | pupper | None |
| 982 | 749403093750648834 | NaN | NaN | 2016-07-03 00:43:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Duuun dun... duuun dun... dunn dun. dunn dun.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749403093... | 10 | 10 | None | None | None | None | None |
| 983 | 749395845976588288 | NaN | NaN | 2016-07-03 00:14:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is George. He just remembered that bees a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749395845... | 10 | 10 | George | None | None | None | None |
| 984 | 749317047558017024 | NaN | NaN | 2016-07-02 19:01:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Blu. He's a wild bush Floofer. I wish ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749317047... | 12 | 10 | Blu | None | floofer | None | None |
| 985 | 749075273010798592 | NaN | NaN | 2016-07-02 03:00:36 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Boomer. He's self-baptizing. Other dog... | NaN | NaN | NaN | https://vine.co/v/5ztZvHgI17r | 11 | 10 | Boomer | doggo | None | None | None |
| 986 | 749064354620928000 | NaN | NaN | 2016-07-02 02:17:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Winston. He's pupset because I forgot to ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749064354... | 11 | 10 | Winston | None | None | None | None |
| 987 | 749036806121881602 | NaN | NaN | 2016-07-02 00:27:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dietrich. He hops at random. Other dog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/749036806... | 8 | 10 | Dietrich | None | None | None | None |
| 988 | 748977405889503236 | NaN | NaN | 2016-07-01 20:31:43 +0000 | <a href="http://twitter.com/download/iphone" r... | What jokester sent in a pic without a dog in i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748977405... | 10 | 10 | not | None | None | None | None |
| 989 | 748932637671223296 | NaN | NaN | 2016-07-01 17:33:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Divine Doggo. Must be magical af.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748932637... | 13 | 10 | Divine | doggo | None | None | None |
| 990 | 748705597323898880 | NaN | NaN | 2016-07-01 02:31:39 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | #BarkWeek is getting rather heckin terrifying ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748705597... | 13 | 10 | None | None | None | None | None |
| 991 | 748699167502000129 | NaN | NaN | 2016-07-01 02:06:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Tripp. He's being eaten by a sherk and do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748699167... | 11 | 10 | Tripp | None | None | None | None |
| 992 | 748692773788876800 | NaN | NaN | 2016-07-01 01:40:41 +0000 | <a href="http://twitter.com/download/iphone" r... | That is Quizno. This is his beach. He does not... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748692773... | 10 | 10 | his | doggo | None | None | None |
| 993 | 748575535303884801 | NaN | NaN | 2016-06-30 17:54:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is one of the most reckless puppers I've ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748575535... | 6 | 10 | one | None | None | None | None |
| 994 | 748568946752774144 | NaN | NaN | 2016-06-30 17:28:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cora. She rings a bell for treats. 12/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748568946... | 12 | 10 | Cora | None | None | None | None |
| 995 | 748346686624440324 | NaN | NaN | 2016-06-30 02:45:28 +0000 | <a href="http://twitter.com/download/iphone" r... | "So... we meat again" (I'm so sorry for that p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748346686... | 10 | 10 | None | None | None | None | None |
| 996 | 748337862848962560 | NaN | NaN | 2016-06-30 02:10:24 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek ht... | NaN | NaN | NaN | https://vine.co/v/h5aDaFthX6O | 13 | 10 | None | None | None | pupper | None |
| 997 | 748324050481647620 | NaN | NaN | 2016-06-30 01:15:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Duke. He permanently looks like he jus... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748324050... | 11 | 10 | Duke | None | None | None | None |
| 998 | 748307329658011649 | NaN | NaN | 2016-06-30 00:09:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This sherk must've leapt out of the water and ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/748307329... | 7 | 10 | None | None | None | None | None |
| 999 | 748220828303695873 | NaN | NaN | 2016-06-29 18:25:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Stop what you're doing and watch this heckin m... | NaN | NaN | NaN | https://vine.co/v/iiLjKuYJpr6 | 13 | 10 | None | None | None | None | None |
| 1000 | 747963614829678593 | NaN | NaN | 2016-06-29 01:23:16 +0000 | <a href="http://twitter.com/download/iphone" r... | PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747963614... | 10 | 10 | None | None | None | pupper | None |
| 1001 | 747933425676525569 | NaN | NaN | 2016-06-28 23:23:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Pls don't send more sherks. I don't care how s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747933425... | 11 | 10 | None | None | None | None | None |
| 1002 | 747885874273214464 | NaN | NaN | 2016-06-28 20:14:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a mighty rare blue-tailed hammer sherk... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747885874... | 8 | 10 | a | None | None | None | None |
| 1003 | 747844099428986880 | NaN | NaN | 2016-06-28 17:28:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Huxley. He's pumped for #BarkWeek. Eve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747844099... | 11 | 10 | Huxley | None | None | None | None |
| 1004 | 747816857231626240 | NaN | NaN | 2016-06-28 15:40:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Viewer discretion is advised. This is a terrib... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747816857... | 4 | 10 | a | None | None | None | None |
| 1005 | 747651430853525504 | 7.476487e+17 | 4.196984e+09 | 2016-06-28 04:42:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Other pupper asked not to have his identity sh... | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | pupper | None |
| 1006 | 747648653817413632 | NaN | NaN | 2016-06-28 04:31:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Keurig. He apparently headbutts other ... | NaN | NaN | NaN | https://vine.co/v/iqIZFtOxEMB | 12 | 10 | Keurig | None | None | None | None |
| 1007 | 747600769478692864 | NaN | NaN | 2016-06-28 01:21:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bookstore and Seaweed. Bookstore is ti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747600769... | 10 | 10 | Bookstore | None | None | None | None |
| 1008 | 747594051852075008 | NaN | NaN | 2016-06-28 00:54:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Again w the sharks guys. This week is about do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747594051... | 11 | 10 | None | None | None | None | None |
| 1009 | 747512671126323200 | NaN | NaN | 2016-06-27 19:31:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys pls stop sending actual sharks. It's too ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747512671... | 10 | 10 | None | None | None | None | None |
| 1010 | 747461612269887489 | NaN | NaN | 2016-06-27 16:08:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Never seen a shark hold another shark like thi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747461612... | 10 | 10 | None | None | None | None | None |
| 1011 | 747439450712596480 | NaN | NaN | 2016-06-27 14:40:26 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Linus. He just wanted to say hello but... | NaN | NaN | NaN | https://vine.co/v/5uTVXWvn3Ip | 12 | 10 | Linus | None | None | None | None |
| 1012 | 747242308580548608 | NaN | NaN | 2016-06-27 01:37:04 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This pupper killed this great w... | 7.047611e+17 | 4.196984e+09 | 2016-03-01 20:11:59 +0000 | https://twitter.com/dog_rates/status/704761120... | 13 | 10 | None | None | None | pupper | None |
| 1013 | 747219827526344708 | NaN | NaN | 2016-06-27 00:07:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Atticus. He's remaining calm but his c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747219827... | 11 | 10 | Atticus | None | None | None | None |
| 1014 | 747204161125646336 | NaN | NaN | 2016-06-26 23:05:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clark. He's deadly af. Clearly part sh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747204161... | 10 | 10 | Clark | None | None | None | None |
| 1015 | 747103485104099331 | NaN | NaN | 2016-06-26 16:25:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys... I said DOGS with "shark qualities" or ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/747103485... | 11 | 10 | None | None | None | None | None |
| 1016 | 746906459439529985 | 7.468859e+17 | 4.196984e+09 | 2016-06-26 03:22:31 +0000 | <a href="http://twitter.com/download/iphone" r... | PUPDATE: can't see any. Even if I could, I cou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746906459... | 0 | 10 | None | None | None | None | None |
| 1017 | 746872823977771008 | NaN | NaN | 2016-06-26 01:08:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a carrot. We only rate dogs. Please on... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746872823... | 11 | 10 | a | None | None | None | None |
| 1018 | 746818907684614144 | 6.914169e+17 | 4.196984e+09 | 2016-06-25 21:34:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys... Dog Jesus 2.0\n13/10 buoyant af https:... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746818907... | 13 | 10 | None | None | None | None | None |
| 1019 | 746790600704425984 | NaN | NaN | 2016-06-25 19:42:08 +0000 | <a href="http://twitter.com/download/iphone" r... | When you just can't resist... 10/10 topnotch t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746790600... | 10 | 10 | None | None | None | None | None |
| 1020 | 746757706116112384 | NaN | NaN | 2016-06-25 17:31:25 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Maddie. She gets some wicked air time.... | NaN | NaN | NaN | https://vine.co/v/5BYq6hmrEI3 | 11 | 10 | Maddie | None | None | None | None |
| 1021 | 746726898085036033 | NaN | NaN | 2016-06-25 15:29:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Abby. She's incredibly distracting. Just ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746726898... | 12 | 10 | Abby | None | None | None | None |
| 1022 | 746542875601690625 | NaN | NaN | 2016-06-25 03:17:46 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here's a golden floofer helping with the groce... | NaN | NaN | NaN | https://vine.co/v/5uZYwqmuDeT | 11 | 10 | None | None | floofer | None | None |
| 1023 | 746521445350707200 | NaN | NaN | 2016-06-25 01:52:36 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: This is Shaggy. He knows exactl... | 6.678667e+17 | 4.196984e+09 | 2015-11-21 00:46:50 +0000 | https://twitter.com/dog_rates/status/667866724... | 10 | 10 | Shaggy | None | None | None | None |
| 1024 | 746507379341139972 | NaN | NaN | 2016-06-25 00:56:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shiloh. She did not pass the soft mout... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746507379... | 10 | 10 | Shiloh | None | None | None | None |
| 1025 | 746369468511756288 | NaN | NaN | 2016-06-24 15:48:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is an Iraqi Speed Kangaroo. It is not a d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746369468... | 9 | 10 | an | None | None | None | None |
| 1026 | 746131877086527488 | NaN | NaN | 2016-06-24 00:04:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gustav. He has claimed that plant. It ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746131877... | 10 | 10 | Gustav | None | None | None | None |
| 1027 | 746056683365994496 | NaN | NaN | 2016-06-23 19:05:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Arlen and Thumpelina. They are best pa... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/746056683... | 11 | 10 | Arlen | None | None | None | None |
| 1028 | 745789745784041472 | NaN | NaN | 2016-06-23 01:25:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gus. He didn't win the Powerball. Quit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745789745... | 10 | 10 | Gus | None | None | None | None |
| 1029 | 745712589599014916 | NaN | NaN | 2016-06-22 20:18:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Percy. He fell asleep at the wheel. Ir... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745712589... | 7 | 10 | Percy | None | None | None | None |
| 1030 | 745433870967832576 | NaN | NaN | 2016-06-22 01:50:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lenox. She's in a wheelbarrow. Silly d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745433870... | 10 | 10 | Lenox | doggo | None | None | None |
| 1031 | 745422732645535745 | NaN | NaN | 2016-06-22 01:06:43 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Pls stop sending in non-can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745422732... | 9 | 10 | very | None | None | None | None |
| 1032 | 745314880350101504 | NaN | NaN | 2016-06-21 17:58:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sugar. She excels underwater. 12/10 ph... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745314880... | 12 | 10 | Sugar | None | None | None | None |
| 1033 | 745074613265149952 | NaN | NaN | 2016-06-21 02:03:25 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Jeffrey. He wasn't prepared to execute... | NaN | NaN | NaN | https://vine.co/v/iQm3JAXuFmv | 11 | 10 | Jeffrey | None | None | None | None |
| 1034 | 745057283344719872 | NaN | NaN | 2016-06-21 00:54:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. He's downright gorgeous as hel... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/745057283... | 12 | 10 | Oliver | None | None | None | None |
| 1035 | 744995568523612160 | NaN | NaN | 2016-06-20 20:49:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Abby. She got her face stuck in a glas... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744995568... | 9 | 10 | Abby | None | None | None | puppo |
| 1036 | 744971049620602880 | NaN | NaN | 2016-06-20 19:11:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Indie and Jupiter. They're having... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744971049... | 12 | 10 | Indie | None | None | None | None |
| 1037 | 744709971296780288 | NaN | NaN | 2016-06-20 01:54:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harvey. He's stealthy af. 10/10 would ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744709971... | 10 | 10 | Harvey | None | None | None | None |
| 1038 | 744334592493166593 | NaN | NaN | 2016-06-19 01:02:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Blanket. She has overthrown her human.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744334592... | 11 | 10 | Blanket | None | None | None | None |
| 1039 | 744234799360020481 | NaN | NaN | 2016-06-18 18:26:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo realizing you can stand in a po... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/744234799... | 13 | 10 | None | doggo | None | None | None |
| 1040 | 744223424764059648 | NaN | NaN | 2016-06-18 17:41:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is actually a pupper and I'd pet it so we... | NaN | NaN | NaN | https://twitter.com/strange_animals/status/672... | 12 | 10 | actually | None | None | pupper | None |
| 1041 | 743980027717509120 | NaN | NaN | 2016-06-18 01:33:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Geno. He's a Wrinkled Baklavian Velvee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743980027... | 11 | 10 | Geno | None | None | None | None |
| 1042 | 743895849529389061 | NaN | NaN | 2016-06-17 19:59:26 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're given AUX cord privileges from the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743895849... | 10 | 10 | None | None | None | None | None |
| 1043 | 743835915802583040 | NaN | NaN | 2016-06-17 16:01:16 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @dog_rates: Extremely intelligent dog here.... | 6.671383e+17 | 4.196984e+09 | 2015-11-19 00:32:12 +0000 | https://twitter.com/dog_rates/status/667138269... | 10 | 10 | None | None | None | None | None |
| 1044 | 743609206067040256 | NaN | NaN | 2016-06-17 01:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Stark. He just had his first ice cream co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743609206... | 10 | 10 | Stark | None | None | None | None |
| 1045 | 743595368194129920 | NaN | NaN | 2016-06-17 00:05:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harold. He looks slippery af. Probably... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743595368... | 7 | 10 | Harold | None | None | None | None |
| 1046 | 743545585370791937 | NaN | NaN | 2016-06-16 20:47:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Bentley and Millie. They do every... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743545585... | 11 | 10 | Bentley | None | None | None | None |
| 1047 | 743510151680958465 | NaN | NaN | 2016-06-16 18:26:48 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Beya. She doesn't want to swim, so she... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743510151... | 13 | 10 | Beya | None | None | None | None |
| 1048 | 743253157753532416 | NaN | NaN | 2016-06-16 01:25:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kilo. He cannot reach the snackum. Nif... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743253157... | 10 | 10 | Kilo | None | None | None | puppo |
| 1049 | 743222593470234624 | NaN | NaN | 2016-06-15 23:24:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a very rare Great Alaskan Bush Pupper.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743222593... | 12 | 10 | a | None | None | pupper | None |
| 1050 | 743210557239623680 | NaN | NaN | 2016-06-15 22:36:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Kayla, an underground poker legend. Playe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/743210557... | 10 | 10 | Kayla | None | None | None | None |
| 1051 | 742534281772302336 | NaN | NaN | 2016-06-14 01:49:03 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | For anyone who's wondering, this is what happe... | NaN | NaN | NaN | https://vine.co/v/iLTZmtE1FTB | 11 | 10 | None | doggo | None | None | None |
| 1052 | 742528092657332225 | NaN | NaN | 2016-06-14 01:24:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maxaroni. He's pumped as hell for the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742528092... | 10 | 10 | Maxaroni | None | None | None | None |
| 1053 | 742465774154047488 | NaN | NaN | 2016-06-13 21:16:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Was just informed about this hero pupper and o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742465774... | 14 | 10 | None | None | None | pupper | None |
| 1054 | 742423170473463808 | NaN | NaN | 2016-06-13 18:27:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bell. She likes holding hands. 12/10 w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742423170... | 12 | 10 | Bell | None | None | None | None |
| 1055 | 742385895052087300 | NaN | NaN | 2016-06-13 15:59:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phil. That's his comfort stick. He hol... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742385895... | 11 | 10 | Phil | None | None | None | None |
| 1056 | 742161199639494656 | NaN | NaN | 2016-06-13 01:06:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Doug. He's trying to float away. 12/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742161199... | 12 | 10 | Doug | None | None | None | None |
| 1057 | 742150209887731712 | NaN | NaN | 2016-06-13 00:22:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Edmund. He sends stellar selfies. Cute... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/742150209... | 8 | 10 | Edmund | None | None | pupper | None |
| 1058 | 741793263812808706 | NaN | NaN | 2016-06-12 00:44:30 +0000 | <a href="http://twitter.com/download/iphone" r... | When your crush won't pay attention to you. Bo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741793263... | 10 | 10 | None | None | None | None | None |
| 1059 | 741743634094141440 | NaN | NaN | 2016-06-11 21:27:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Aqua. She's a sandy pupper. Not sure how ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741743634... | 11 | 10 | Aqua | None | None | pupper | None |
| 1060 | 741438259667034112 | NaN | NaN | 2016-06-11 01:13:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He's still figuring out couche... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741438259... | 9 | 10 | Tucker | None | None | None | None |
| 1061 | 741303864243200000 | NaN | NaN | 2016-06-10 16:19:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Theodore. He just saw an adult wearing... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741303864... | 12 | 10 | Theodore | None | None | None | None |
| 1062 | 741099773336379392 | NaN | NaN | 2016-06-10 02:48:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Ted. He's given up. 11/10 relatable af... | NaN | NaN | NaN | https://vine.co/v/ixHYvdxUx1L | 11 | 10 | Ted | None | None | None | None |
| 1063 | 741067306818797568 | NaN | NaN | 2016-06-10 00:39:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is just downright precious af. 12/10 for ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/741067306... | 12 | 10 | just | doggo | None | pupper | None |
| 1064 | 740995100998766593 | NaN | NaN | 2016-06-09 19:52:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leo. He's a vape god. Blows o's for da... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740995100... | 10 | 10 | Leo | None | None | None | None |
| 1065 | 740711788199743490 | NaN | NaN | 2016-06-09 01:07:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we are witnessing the touchdown of a pupn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740711788... | 9 | 10 | None | None | None | None | None |
| 1066 | 740699697422163968 | NaN | NaN | 2016-06-09 00:19:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chip. He only mowed half the yard. 8/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740699697... | 8 | 10 | Chip | None | None | None | None |
| 1067 | 740676976021798912 | NaN | NaN | 2016-06-08 22:48:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Baloo. He's expecting a fast ground ball,... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740676976... | 11 | 10 | Baloo | None | None | pupper | None |
| 1068 | 740373189193256964 | NaN | NaN | 2016-06-08 02:41:38 +0000 | <a href="http://twitter.com/download/iphone" r... | After so many requests, this is Bretagne. She ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740373189... | 9 | 11 | None | None | None | None | None |
| 1069 | 740365076218183684 | NaN | NaN | 2016-06-08 02:09:24 +0000 | <a href="http://twitter.com/download/iphone" r... | When the photographer forgets to tell you wher... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740365076... | 10 | 10 | None | None | None | None | None |
| 1070 | 740359016048689152 | NaN | NaN | 2016-06-08 01:45:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chase. He's in a predicament. 9/10 hel... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740359016... | 9 | 10 | Chase | None | None | None | None |
| 1071 | 740214038584557568 | NaN | NaN | 2016-06-07 16:09:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is getting incredibly frustrating. This i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/740214038... | 10 | 10 | getting | None | None | None | None |
| 1072 | 739979191639244800 | NaN | NaN | 2016-06-07 00:36:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nollie. She's waving at you. If you do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739979191... | 12 | 10 | Nollie | None | None | None | None |
| 1073 | 739932936087216128 | NaN | NaN | 2016-06-06 21:32:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Rorie. She's zen af. Just enjoyin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739932936... | 10 | 10 | Rorie | None | None | None | None |
| 1074 | 739844404073074688 | NaN | NaN | 2016-06-06 15:40:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Simba. He's the grand prize. The troph... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739844404... | 12 | 10 | Simba | None | None | None | None |
| 1075 | 739623569819336705 | NaN | NaN | 2016-06-06 01:02:55 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here's a doggo that don't need no human. 12/10... | NaN | NaN | NaN | https://vine.co/v/iY9Fr1I31U6 | 12 | 10 | None | doggo | None | None | None |
| 1076 | 739606147276148736 | NaN | NaN | 2016-06-05 23:53:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Benji. He just turned 1. Has already give... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739606147... | 9 | 10 | Benji | None | None | pupper | None |
| 1077 | 739544079319588864 | NaN | NaN | 2016-06-05 19:47:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This... is a Tyrannosaurus rex. We only rate d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739544079... | 10 | 10 | None | None | None | None | None |
| 1078 | 739485634323156992 | NaN | NaN | 2016-06-05 15:54:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kyle. He's a heavy drinker and an avid... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739485634... | 6 | 10 | Kyle | None | None | None | None |
| 1079 | 739238157791694849 | NaN | NaN | 2016-06-04 23:31:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo blowing bubbles. It's downright... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/739238157... | 13 | 10 | None | doggo | None | None | None |
| 1080 | 738891149612572673 | 7.384119e+17 | 3.589728e+08 | 2016-06-04 00:32:32 +0000 | <a href="http://twitter.com/download/iphone" r... | @mount_alex3 13/10 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1081 | 738885046782832640 | NaN | NaN | 2016-06-04 00:08:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charles. He's a Nova Scotian Towel Pou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738885046... | 11 | 10 | Charles | None | None | None | None |
| 1082 | 738883359779196928 | NaN | NaN | 2016-06-04 00:01:35 +0000 | <a href="http://twitter.com/download/iphone" r... | When a single soap orb changes your entire per... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738883359... | 10 | 10 | None | None | None | None | None |
| 1083 | 738537504001953792 | NaN | NaN | 2016-06-03 01:07:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bayley. She fell asleep trying to esca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738537504... | 11 | 10 | Bayley | None | None | None | puppo |
| 1084 | 738402415918125056 | NaN | NaN | 2016-06-02 16:10:29 +0000 | <a href="http://twitter.com/download/iphone" r... | "Don't talk to me or my son ever again" ...10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738402415... | 10 | 10 | None | None | None | None | None |
| 1085 | 738184450748633089 | NaN | NaN | 2016-06-02 01:44:22 +0000 | <a href="http://twitter.com/download/iphone" r... | For the last time, we only rate dogs. Pls stop... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738184450... | 9 | 10 | None | None | None | None | None |
| 1086 | 738166403467907072 | NaN | NaN | 2016-06-02 00:32:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Axel. He's a professional leaf catcher... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738166403... | 12 | 10 | Axel | None | None | None | None |
| 1087 | 738156290900254721 | NaN | NaN | 2016-06-01 23:52:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Storkson. He's wet and sad. 10/10 chee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/738156290... | 10 | 10 | Storkson | None | None | None | None |
| 1088 | 737826014890496000 | NaN | NaN | 2016-06-01 02:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Remy. He has some long ass ears (proba... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737826014... | 10 | 10 | Remy | None | None | None | None |
| 1089 | 737800304142471168 | NaN | NaN | 2016-06-01 00:17:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bella. She's ubering home after a few ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737800304... | 10 | 10 | Bella | None | None | None | None |
| 1090 | 737678689543020544 | NaN | NaN | 2016-05-31 16:14:39 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Pls stop sending in non-can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737678689... | 11 | 10 | None | None | None | None | None |
| 1091 | 737445876994609152 | NaN | NaN | 2016-05-31 00:49:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Just wanted to share this super rare Rainbow F... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737445876... | 13 | 10 | None | None | floofer | None | None |
| 1092 | 737322739594330112 | NaN | NaN | 2016-05-30 16:40:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Lily. She's not injured or anythi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737322739... | 9 | 10 | Lily | None | None | None | None |
| 1093 | 737310737551491075 | NaN | NaN | 2016-05-30 15:52:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Everybody stop what you're doing and watch the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/737310737... | 13 | 10 | None | None | None | None | None |
| 1094 | 736736130620620800 | NaN | NaN | 2016-05-29 01:49:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chadrick. He's gnarly af 13/10 https:/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736736130... | 13 | 10 | Chadrick | None | None | None | None |
| 1095 | 736392552031657984 | NaN | NaN | 2016-05-28 03:04:00 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Say hello to mad pupper. You know what you did... | NaN | NaN | NaN | https://vine.co/v/iEggaEOiLO3 | 13 | 10 | mad | None | None | pupper | None |
| 1096 | 736365877722001409 | NaN | NaN | 2016-05-28 01:18:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rory. He's extremely impatient. 11/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736365877... | 11 | 10 | Rory | None | None | pupper | None |
| 1097 | 736225175608430592 | NaN | NaN | 2016-05-27 15:58:54 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please stop sending in non-... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736225175... | 10 | 10 | very | None | None | None | None |
| 1098 | 736010884653420544 | NaN | NaN | 2016-05-27 01:47:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Right after you graduate vs when you remember ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/736010884... | 10 | 10 | None | None | None | None | None |
| 1099 | 735991953473572864 | NaN | NaN | 2016-05-27 00:32:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maxaroni. He's curly af. Also rather f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735991953... | 11 | 10 | Maxaroni | None | None | None | None |
| 1100 | 735648611367784448 | NaN | NaN | 2016-05-26 01:47:51 +0000 | <a href="http://twitter.com/download/iphone" r... | *faints* 12/10 perfection in pupper form https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735648611... | 12 | 10 | None | None | None | pupper | None |
| 1101 | 735635087207878657 | NaN | NaN | 2016-05-26 00:54:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dakota. He hasn't grow into his skin y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735635087... | 11 | 10 | Dakota | None | None | None | None |
| 1102 | 735274964362878976 | NaN | NaN | 2016-05-25 01:03:06 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Please stop sending in your... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735274964... | 11 | 10 | None | None | None | None | None |
| 1103 | 735256018284875776 | NaN | NaN | 2016-05-24 23:47:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kellogg. He accidentally opened the fr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735256018... | 8 | 10 | Kellogg | doggo | None | None | None |
| 1104 | 735137028879360001 | NaN | NaN | 2016-05-24 15:55:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Buckley. His family & some neighbors ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/735137028... | 9 | 10 | Buckley | None | None | pupper | None |
| 1105 | 734912297295085568 | NaN | NaN | 2016-05-24 01:02:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jax. He's a literal fluffball. Sneaky ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/734912297... | 10 | 10 | Jax | None | None | None | None |
| 1106 | 734787690684657664 | NaN | NaN | 2016-05-23 16:46:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog is more successful than I will ever b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/734787690... | 13 | 10 | None | None | None | None | None |
| 1107 | 734776360183431168 | NaN | NaN | 2016-05-23 16:01:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Livvie. Someone should tell her it's b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/734776360... | 11 | 10 | Livvie | None | None | None | None |
| 1108 | 734559631394082816 | NaN | NaN | 2016-05-23 01:40:38 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | When your friend is turnt af and you're just t... | NaN | NaN | NaN | https://vine.co/v/iExiLXiiHvX | 10 | 10 | None | None | None | None | None |
| 1109 | 733828123016450049 | NaN | NaN | 2016-05-21 01:13:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Terry. The harder you hug him the fart... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733828123... | 10 | 10 | Terry | None | None | None | None |
| 1110 | 733822306246479872 | NaN | NaN | 2016-05-21 00:50:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Moose. He's a Polynesian Floofer. Dapp... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733822306... | 10 | 10 | Moose | None | floofer | None | None |
| 1111 | 733482008106668032 | NaN | NaN | 2016-05-20 02:18:32 +0000 | <a href="http://twitter.com/download/iphone" r... | "Ello this is dog how may I assist" ...10/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733482008... | 10 | 10 | None | None | None | None | None |
| 1112 | 733460102733135873 | NaN | NaN | 2016-05-20 00:51:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hermione. Her face is as old as time. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733460102... | 11 | 10 | Hermione | None | None | None | None |
| 1113 | 733109485275860992 | NaN | NaN | 2016-05-19 01:38:16 +0000 | <a href="http://twitter.com/download/iphone" r... | Like father (doggo), like son (pupper). Both 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/733109485... | 12 | 10 | None | doggo | None | pupper | None |
| 1114 | 732732193018155009 | NaN | NaN | 2016-05-18 00:39:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ralpher. He's an East Guinean Flop Dog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732732193... | 12 | 10 | Ralpher | None | None | None | None |
| 1115 | 732726085725589504 | NaN | NaN | 2016-05-18 00:14:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Aldrick. He looks wise af. Also except... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732726085... | 11 | 10 | Aldrick | None | None | None | None |
| 1116 | 732585889486888962 | NaN | NaN | 2016-05-17 14:57:41 +0000 | <a href="http://twitter.com/download/iphone" r... | When your teacher agreed on 10,000 RTs and no ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732585889... | 10 | 10 | None | None | None | None | None |
| 1117 | 732375214819057664 | NaN | NaN | 2016-05-17 01:00:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kyle (pronounced 'Mitch'). He strives ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732375214... | 11 | 10 | Kyle | doggo | None | None | None |
| 1118 | 732005617171337216 | NaN | NaN | 2016-05-16 00:31:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Larry. He has no self control. Tongue ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/732005617... | 11 | 10 | Larry | None | None | None | None |
| 1119 | 731285275100512256 | NaN | NaN | 2016-05-14 00:49:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Solomon. He's a Beneroo Cumberflop. 12... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/731285275... | 12 | 10 | Solomon | None | None | None | None |
| 1120 | 731156023742988288 | NaN | NaN | 2016-05-13 16:15:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to this unbelievably well behaved sq... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/731156023... | 204 | 170 | this | None | None | None | None |
| 1121 | 730924654643314689 | NaN | NaN | 2016-05-13 00:56:32 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Pls stop sending non-canine... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730924654... | 9 | 10 | unacceptable | None | None | None | None |
| 1122 | 730573383004487680 | NaN | NaN | 2016-05-12 01:40:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rooney. He can't comprehend glass. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730573383... | 10 | 10 | Rooney | None | None | pupper | None |
| 1123 | 730427201120833536 | NaN | NaN | 2016-05-11 15:59:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Crystal. She's flawless. Really wants ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730427201... | 11 | 10 | Crystal | None | None | None | None |
| 1124 | 730211855403241472 | NaN | NaN | 2016-05-11 01:44:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ziva. She doesn't know how her collar ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730211855... | 11 | 10 | Ziva | None | None | None | None |
| 1125 | 730196704625098752 | NaN | NaN | 2016-05-11 00:43:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charles. He's camera shy. Tail longer ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/730196704... | 6 | 10 | Charles | None | None | None | None |
| 1126 | 729854734790754305 | NaN | NaN | 2016-05-10 02:05:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Ollie. He conducts this train. He... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729854734... | 11 | 10 | Ollie | None | None | None | None |
| 1127 | 729838605770891264 | 7.291135e+17 | 4.196984e+09 | 2016-05-10 01:00:58 +0000 | <a href="http://twitter.com/download/iphone" r... | "Challenge completed" \n(pupgraded to 12/10) h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729838605... | 12 | 10 | None | None | None | None | None |
| 1128 | 729823566028484608 | NaN | NaN | 2016-05-10 00:01:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stefan. He's a downright remarkable pu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729823566... | 13 | 10 | Stefan | None | None | None | None |
| 1129 | 729463711119904772 | NaN | NaN | 2016-05-09 00:11:16 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Pupcasso. You can't afford his art. 13/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729463711... | 13 | 10 | Pupcasso | None | None | None | None |
| 1130 | 729113531270991872 | NaN | NaN | 2016-05-08 00:59:46 +0000 | <a href="http://twitter.com/download/iphone" r... | "Challenge accepted"\n10/10 https://t.co/vNjvr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/729113531... | 10 | 10 | None | None | None | None | None |
| 1131 | 728986383096946689 | NaN | NaN | 2016-05-07 16:34:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Puff. He started out on the streets (f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728986383... | 11 | 10 | Puff | None | None | None | None |
| 1132 | 728760639972315136 | NaN | NaN | 2016-05-07 01:37:30 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're way too slow for the "down low" po... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728760639... | 13 | 10 | None | None | None | None | None |
| 1133 | 728751179681943552 | NaN | NaN | 2016-05-07 00:59:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Flurpson. He can't believe it's not bu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728751179... | 10 | 10 | Flurpson | None | None | None | None |
| 1134 | 728653952833728512 | NaN | NaN | 2016-05-06 18:33:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Coleman. Somebody needs to tell him th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728653952... | 8 | 10 | Coleman | None | None | None | None |
| 1135 | 728409960103686147 | NaN | NaN | 2016-05-06 02:24:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wallace. He's a skater pup. He said se... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728409960... | 10 | 10 | Wallace | None | None | None | None |
| 1136 | 728387165835677696 | NaN | NaN | 2016-05-06 00:53:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Enchilada (yes, that's her real name).... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728387165... | 12 | 10 | Enchilada | None | None | None | None |
| 1137 | 728046963732717569 | NaN | NaN | 2016-05-05 02:21:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Raymond. He controls fountains with hi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728046963... | 11 | 10 | Raymond | None | None | None | None |
| 1138 | 728035342121635841 | NaN | NaN | 2016-05-05 01:35:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is all I want in my life. 12/10 for super... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728035342... | 12 | 10 | all | None | None | pupper | None |
| 1139 | 728015554473250816 | NaN | NaN | 2016-05-05 00:16:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rueben. He has reached ultimate pupper... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/728015554... | 11 | 10 | Rueben | None | None | pupper | None |
| 1140 | 727685679342333952 | NaN | NaN | 2016-05-04 02:26:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cilantro. She's a Fellation Gadzooks. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727685679... | 12 | 10 | Cilantro | None | None | None | None |
| 1141 | 727644517743104000 | NaN | NaN | 2016-05-03 23:42:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a doggo struggling to cope with the win... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727644517... | 13 | 10 | None | doggo | None | None | None |
| 1142 | 727524757080539137 | NaN | NaN | 2016-05-03 15:46:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper had to undergo emergency haircut s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727524757... | 10 | 10 | None | None | None | pupper | None |
| 1143 | 727314416056803329 | NaN | NaN | 2016-05-03 01:50:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper was about to explain where that di... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727314416... | 11 | 10 | None | None | None | pupper | None |
| 1144 | 727286334147182592 | NaN | NaN | 2016-05-02 23:59:09 +0000 | <a href="http://twitter.com/download/iphone" r... | I swear to god if we get sent another Blue Mad... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727286334... | 9 | 10 | None | None | None | None | None |
| 1145 | 727175381690781696 | NaN | NaN | 2016-05-02 16:38:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Karll. He just wants to go kayaking. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/727175381... | 10 | 10 | Karll | None | None | None | None |
| 1146 | 727155742655025152 | NaN | NaN | 2016-05-02 15:20:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | When you're trying to enjoy yourself but end u... | NaN | NaN | NaN | https://vine.co/v/ixa1ejbXiM7 | 11 | 10 | None | None | None | None | None |
| 1147 | 726935089318363137 | NaN | NaN | 2016-05-02 00:43:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sprout. He's just precious af. 12/10 I... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726935089... | 12 | 10 | Sprout | None | None | None | None |
| 1148 | 726887082820554753 | NaN | NaN | 2016-05-01 21:32:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Blitz. He's a new dad struggling to co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726887082... | 10 | 10 | Blitz | None | None | None | None |
| 1149 | 726828223124897792 | NaN | NaN | 2016-05-01 17:38:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bloop. He's a Phoenician Winnebago. To... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726828223... | 12 | 10 | Bloop | None | None | None | None |
| 1150 | 726224900189511680 | NaN | NaN | 2016-04-30 01:41:23 +0000 | <a href="http://twitter.com/download/iphone" r... | I'm getting super heckin frustrated with you a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/726224900... | 9 | 10 | None | None | None | None | None |
| 1151 | 725842289046749185 | NaN | NaN | 2016-04-29 00:21:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Colby. He's currently regretting all t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/725842289... | 12 | 10 | Colby | None | None | None | None |
| 1152 | 725786712245440512 | NaN | NaN | 2016-04-28 20:40:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Lillie. She's a Rutabagan Floofem... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/725786712... | 11 | 10 | Lillie | None | None | pupper | None |
| 1153 | 725729321944506368 | NaN | NaN | 2016-04-28 16:52:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lola. She's a Butternut Splishnsplash.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/725729321... | 12 | 10 | Lola | None | None | None | None |
| 1154 | 725458796924002305 | NaN | NaN | 2016-04-27 22:57:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Pup had to be removed cuz it wouldn't have bee... | NaN | NaN | NaN | https://twitter.com/foxdeportes/status/7251360... | 13 | 10 | None | None | None | None | None |
| 1155 | 724983749226668032 | NaN | NaN | 2016-04-26 15:29:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fred-Rick. He dabbles in parkour. The ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724983749... | 12 | 10 | Fred | None | None | None | None |
| 1156 | 724771698126512129 | NaN | NaN | 2016-04-26 01:26:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Nothin better than a doggo and a sunset. 11/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724771698... | 11 | 10 | None | doggo | None | None | None |
| 1157 | 724405726123311104 | NaN | NaN | 2016-04-25 01:12:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ashleigh. She's having Coachella withd... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724405726... | 10 | 10 | Ashleigh | None | None | pupper | None |
| 1158 | 724049859469295616 | NaN | NaN | 2016-04-24 01:38:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kreggory. He just took a look at his s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724049859... | 10 | 10 | Kreggory | None | None | None | None |
| 1159 | 724046343203856385 | NaN | NaN | 2016-04-24 01:24:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sarge. Not even he knows what his tong... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724046343... | 10 | 10 | Sarge | None | None | None | None |
| 1160 | 724004602748780546 | NaN | NaN | 2016-04-23 22:38:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Luther. He saw a ghost. Spooked af. 11... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/724004602... | 11 | 10 | Luther | None | None | pupper | None |
| 1161 | 723912936180330496 | NaN | NaN | 2016-04-23 16:34:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sugar. She's a Bolivian Superfloof. Sp... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723912936... | 12 | 10 | Sugar | None | None | None | None |
| 1162 | 723688335806480385 | NaN | NaN | 2016-04-23 01:41:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reginald. He starts screaming at rando... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723688335... | 12 | 10 | Reginald | None | None | None | None |
| 1163 | 723673163800948736 | NaN | NaN | 2016-04-23 00:41:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ivar. She is a badass Viking warrior. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723673163... | 10 | 10 | Ivar | None | None | None | None |
| 1164 | 723179728551723008 | NaN | NaN | 2016-04-21 16:00:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jangle. She's addicted to broccoli. It... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/723179728... | 8 | 10 | Jangle | None | None | None | None |
| 1165 | 722974582966214656 | NaN | NaN | 2016-04-21 02:25:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy 4/20 from the squad! 13/10 for all https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/722974582... | 4 | 20 | None | None | None | None | None |
| 1166 | 722613351520608256 | NaN | NaN | 2016-04-20 02:30:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Schnitzel. He's a Tropicana Floofboop. Ge... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/722613351... | 12 | 10 | Schnitzel | None | None | None | None |
| 1167 | 721503162398597120 | NaN | NaN | 2016-04-17 00:58:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Panda. He's happy af. 11/10 https://t.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/721503162... | 11 | 10 | Panda | None | None | None | None |
| 1168 | 721001180231503872 | NaN | NaN | 2016-04-15 15:44:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. Bath time is upon him. His fea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/721001180... | 11 | 10 | Oliver | None | None | pupper | None |
| 1169 | 720785406564900865 | NaN | NaN | 2016-04-15 01:26:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He hears everything you say. D... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720785406... | 12 | 10 | Archie | None | None | None | None |
| 1170 | 720775346191278080 | NaN | NaN | 2016-04-15 00:46:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Berkeley. He's in a predicament. 10/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720775346... | 10 | 10 | Berkeley | None | None | None | None |
| 1171 | 720415127506415616 | NaN | NaN | 2016-04-14 00:55:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Garden's coming in nice this year. 10/10 https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720415127... | 10 | 10 | None | None | None | None | None |
| 1172 | 720389942216527872 | NaN | NaN | 2016-04-13 23:15:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ralphé. He patrols the lake. Looking f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720389942... | 11 | 10 | Ralphé | None | None | None | None |
| 1173 | 720340705894408192 | NaN | NaN | 2016-04-13 19:59:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Derek. He just got balled on. Can't ev... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720340705... | 10 | 10 | Derek | None | None | pupper | None |
| 1174 | 720059472081784833 | NaN | NaN | 2016-04-13 01:22:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charleson. He lost his plunger. Looked... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720059472... | 9 | 10 | Charleson | None | None | None | None |
| 1175 | 720043174954147842 | NaN | NaN | 2016-04-13 00:17:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Neptune. He's a Snowy Swiss Mountain F... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/720043174... | 11 | 10 | Neptune | None | None | None | None |
| 1176 | 719991154352222208 | NaN | NaN | 2016-04-12 20:50:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This doggo was initially thrilled when she saw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719991154... | 10 | 10 | None | doggo | None | None | None |
| 1177 | 719704490224398336 | NaN | NaN | 2016-04-12 01:51:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clyde. He's making sure you're having ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719704490... | 12 | 10 | Clyde | None | None | pupper | None |
| 1178 | 719551379208073216 | NaN | NaN | 2016-04-11 15:43:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harnold. He accidentally opened the fr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719551379... | 10 | 10 | Harnold | None | None | None | None |
| 1179 | 719367763014393856 | NaN | NaN | 2016-04-11 03:33:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sid & Murphy. Murphy floats alongside... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719367763... | 11 | 10 | Sid | None | None | None | None |
| 1180 | 719339463458033665 | NaN | NaN | 2016-04-11 01:41:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Lucy and Sophie. They think they'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719339463... | 10 | 10 | Lucy | None | None | None | None |
| 1181 | 719332531645071360 | NaN | NaN | 2016-04-11 01:13:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pippa. She managed to start the car bu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/719332531... | 11 | 10 | Pippa | None | None | None | None |
| 1182 | 718971898235854848 | NaN | NaN | 2016-04-10 01:20:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sadie. She is prepared for battle. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718971898... | 10 | 10 | Sadie | None | None | None | None |
| 1183 | 718939241951195136 | NaN | NaN | 2016-04-09 23:10:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Otis. Everybody look at Otis. 12/10 wo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718939241... | 12 | 10 | Otis | None | None | None | None |
| 1184 | 718631497683582976 | NaN | NaN | 2016-04-09 02:47:55 +0000 | <a href="http://twitter.com/download/iphone" r... | We normally don't rate marshmallows but this o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718631497... | 10 | 10 | None | None | None | None | None |
| 1185 | 718613305783398402 | NaN | NaN | 2016-04-09 01:35:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Carper. He's a Tortellini Angiosperm. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718613305... | 11 | 10 | Carper | None | None | None | None |
| 1186 | 718540630683709445 | NaN | NaN | 2016-04-08 20:46:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Get you a pup that can do both. 10/10 https://... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718540630... | 10 | 10 | None | None | None | None | None |
| 1187 | 718460005985447936 | NaN | NaN | 2016-04-08 15:26:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Bowie. He's listening for underground squ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718460005... | 9 | 10 | Bowie | None | None | None | None |
| 1188 | 718454725339934721 | NaN | NaN | 2016-04-08 15:05:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This pic is old but I hadn't seen it until tod... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718454725... | 13 | 10 | None | None | None | None | None |
| 1189 | 718246886998687744 | NaN | NaN | 2016-04-08 01:19:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alexanderson. He's got a weird ass bir... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718246886... | 3 | 10 | Alexanderson | None | None | None | None |
| 1190 | 718234618122661888 | NaN | NaN | 2016-04-08 00:30:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Suki. She was born with a blurry tail ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/718234618... | 11 | 10 | Suki | None | None | None | None |
| 1191 | 717841801130979328 | NaN | NaN | 2016-04-06 22:29:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Barclay. His father was a banana. 11/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717841801... | 11 | 10 | Barclay | None | None | None | None |
| 1192 | 717790033953034240 | NaN | NaN | 2016-04-06 19:04:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a badass mystery pupper. You weren't aw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717790033... | 10 | 10 | None | None | None | pupper | None |
| 1193 | 717537687239008257 | NaN | NaN | 2016-04-06 02:21:30 +0000 | <a href="http://twitter.com/download/iphone" r... | People please. This is a Deadly Mediterranean ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717537687... | 11 | 10 | a | None | None | None | None |
| 1194 | 717428917016076293 | NaN | NaN | 2016-04-05 19:09:17 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Skittle. He's trying to communicate. 1... | NaN | NaN | NaN | https://vine.co/v/iIhEU2lVqxz | 11 | 10 | Skittle | None | None | None | None |
| 1195 | 717421804990701568 | NaN | NaN | 2016-04-05 18:41:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ebby. She's a Zimbabwean Feta. Embarra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717421804... | 9 | 10 | Ebby | None | None | None | None |
| 1196 | 717047459982213120 | NaN | NaN | 2016-04-04 17:53:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Flávio (pronounced Baxter). He's a Ben... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717047459... | 12 | 10 | Flávio | None | None | None | None |
| 1197 | 717009362452090881 | NaN | NaN | 2016-04-04 15:22:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Smokey. He's having some sort of exist... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/717009362... | 10 | 10 | Smokey | None | None | pupper | None |
| 1198 | 716802964044845056 | NaN | NaN | 2016-04-04 01:41:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Link. He struggles with couches. 10/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716802964... | 10 | 10 | Link | None | None | None | None |
| 1199 | 716791146589110272 | NaN | NaN | 2016-04-04 00:55:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jennifur. She's supposed to be navigating... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716791146... | 11 | 10 | Jennifur | None | None | None | None |
| 1200 | 716730379797970944 | NaN | NaN | 2016-04-03 20:53:33 +0000 | <a href="http://twitter.com/download/iphone" r... | There has clearly been a mistake. Pup did noth... | NaN | NaN | NaN | https://twitter.com/chpsanfrancisco/status/716... | 12 | 10 | None | None | None | None | None |
| 1201 | 716447146686459905 | NaN | NaN | 2016-04-03 02:08:05 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Ozzy. He's acrobatic af. Legendary pup... | NaN | NaN | NaN | https://vine.co/v/eMmXVPn5eQK | 13 | 10 | Ozzy | None | None | pupper | None |
| 1202 | 716439118184652801 | NaN | NaN | 2016-04-03 01:36:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bluebert. He just saw that both #Final... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716439118... | 50 | 50 | Bluebert | None | None | None | None |
| 1203 | 716285507865542656 | NaN | NaN | 2016-04-02 15:25:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stephanus. She stays woke. 12/10 https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716285507... | 12 | 10 | Stephanus | None | None | None | None |
| 1204 | 716080869887381504 | NaN | NaN | 2016-04-02 01:52:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a super majestic doggo and a sunset 11/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/716080869... | 11 | 10 | None | doggo | None | None | None |
| 1205 | 715928423106027520 | NaN | NaN | 2016-04-01 15:46:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bubbles. He's a Yorkshire Piccolope. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715928423... | 11 | 10 | Bubbles | None | None | None | None |
| 1206 | 715758151270801409 | NaN | NaN | 2016-04-01 04:30:16 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is old now but it's absolutely heckin fan... | NaN | NaN | NaN | https://vine.co/v/hYdLVKDpAFu | 13 | 10 | old | None | None | None | None |
| 1207 | 715733265223708672 | NaN | NaN | 2016-04-01 02:51:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a taco. We only rate dogs. Please only... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715733265... | 10 | 10 | a | None | None | None | None |
| 1208 | 715704790270025728 | NaN | NaN | 2016-04-01 00:58:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Bentley. He gives kisses back. 11/10 p... | NaN | NaN | NaN | https://vine.co/v/ijAlDnuOD0l | 11 | 10 | Bentley | None | None | None | None |
| 1209 | 715696743237730304 | NaN | NaN | 2016-04-01 00:26:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Toby. He's a Lithuanian High-Steppin Stic... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715696743... | 10 | 10 | Toby | None | None | None | None |
| 1210 | 715680795826982913 | NaN | NaN | 2016-03-31 23:22:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zeus. He's downright fabulous. 12/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715680795... | 12 | 10 | Zeus | None | None | None | None |
| 1211 | 715360349751484417 | NaN | NaN | 2016-03-31 02:09:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bertson. He just wants to say hi. 11/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715360349... | 11 | 10 | Bertson | None | None | None | None |
| 1212 | 715342466308784130 | NaN | NaN | 2016-03-31 00:58:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oscar. He's a world renowned snowball ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715342466... | 10 | 10 | Oscar | None | None | None | None |
| 1213 | 715220193576927233 | NaN | NaN | 2016-03-30 16:52:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nico. His selfie game is strong af. Ex... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715220193... | 10 | 10 | Nico | None | None | None | None |
| 1214 | 715200624753819648 | NaN | NaN | 2016-03-30 15:34:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Michelangelope. He's half coffee cup. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715200624... | 12 | 10 | Michelangelope | None | None | None | None |
| 1215 | 715009755312439296 | NaN | NaN | 2016-03-30 02:56:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Siba. She's remarkably mobile. Very sl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/715009755... | 12 | 10 | Siba | None | None | None | None |
| 1216 | 714982300363173890 | NaN | NaN | 2016-03-30 01:07:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Calbert. He forgot to clear his Google... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714982300... | 9 | 10 | Calbert | None | None | None | None |
| 1217 | 714962719905021952 | NaN | NaN | 2016-03-29 23:49:30 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Just in case anyone's having a bad day. 12/10 ... | NaN | NaN | NaN | https://vine.co/v/inVtemLt9tE | 12 | 10 | None | None | None | None | None |
| 1218 | 714957620017307648 | NaN | NaN | 2016-03-29 23:29:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Curtis. He's an Albino Haberdasher. Te... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714957620... | 10 | 10 | Curtis | None | None | None | None |
| 1219 | 714631576617938945 | NaN | NaN | 2016-03-29 01:53:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Benedict. He's a feisty pup. Needs a b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714631576... | 4 | 10 | Benedict | None | None | None | None |
| 1220 | 714606013974974464 | NaN | NaN | 2016-03-29 00:12:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Here are two lil cuddly puppers. Both 12/10 wo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714606013... | 12 | 10 | None | None | None | None | None |
| 1221 | 714485234495041536 | NaN | NaN | 2016-03-28 16:12:09 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Blitz. He screams. 10/10 (vid by @yeaa... | NaN | NaN | NaN | https://vine.co/v/iDrOvVqq0A6 | 10 | 10 | Blitz | None | None | None | None |
| 1222 | 714258258790387713 | NaN | NaN | 2016-03-28 01:10:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Travis and Flurp. Travis is pretty chill ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714258258... | 10 | 10 | Travis | None | None | None | None |
| 1223 | 714251586676113411 | NaN | NaN | 2016-03-28 00:43:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Thumas. He hates potted plants. 8/10 w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714251586... | 8 | 10 | Thumas | None | None | None | None |
| 1224 | 714214115368108032 | NaN | NaN | 2016-03-27 22:14:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Easter from the squad! 🐇🐶 13/10 for all ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714214115... | 13 | 10 | None | None | None | None | None |
| 1225 | 714141408463036416 | NaN | NaN | 2016-03-27 17:25:54 +0000 | <a href="http://twitter.com/download/iphone" r... | I know we only rate dogs, but since it's Easte... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/714141408... | 10 | 10 | None | None | None | None | None |
| 1226 | 713919462244790272 | NaN | NaN | 2016-03-27 02:43:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kanu. He's a Freckled Ticonderoga. Sim... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713919462... | 12 | 10 | Kanu | None | None | None | None |
| 1227 | 713909862279876608 | NaN | NaN | 2016-03-27 02:05:49 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Doug. His nose is legendary af. 12/10 ... | NaN | NaN | NaN | https://vine.co/v/iDWlapaXWmm | 12 | 10 | Doug | None | None | None | None |
| 1228 | 713900603437621249 | NaN | NaN | 2016-03-27 01:29:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Saturday here's 9 puppers on a bench. 99... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713900603... | 99 | 90 | None | None | None | None | None |
| 1229 | 713761197720473600 | NaN | NaN | 2016-03-26 16:15:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Piper. She would really like that tenn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713761197... | 12 | 10 | Piper | None | None | None | None |
| 1230 | 713411074226274305 | NaN | NaN | 2016-03-25 17:03:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see an extremely rare Bearded Floofmal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713411074... | 11 | 10 | None | None | None | None | None |
| 1231 | 713177543487135744 | NaN | NaN | 2016-03-25 01:35:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lance. Lance doesn't give a shit. 10/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713177543... | 10 | 10 | Lance | None | None | None | None |
| 1232 | 713175907180089344 | NaN | NaN | 2016-03-25 01:29:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Opie and Clarkus. Clarkus fell as... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/713175907... | 10 | 10 | Opie | None | None | None | None |
| 1233 | 712809025985978368 | NaN | NaN | 2016-03-24 01:11:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stubert. He just arrived. 10/10 https:... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712809025... | 10 | 10 | Stubert | None | None | None | None |
| 1234 | 712717840512598017 | NaN | NaN | 2016-03-23 19:09:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Please don't send in any more polar bears. We ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712717840... | 10 | 10 | None | None | None | None | None |
| 1235 | 712668654853337088 | NaN | NaN | 2016-03-23 15:53:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Sunny and Roxy. They pull things ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712668654... | 10 | 10 | Sunny | None | None | None | None |
| 1236 | 712438159032893441 | NaN | NaN | 2016-03-23 00:37:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kane. He's a semi-submerged Haitian Hu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712438159... | 11 | 10 | Kane | None | None | None | None |
| 1237 | 712309440758808576 | NaN | NaN | 2016-03-22 16:06:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Reminder that we made our first set of sticker... | NaN | NaN | NaN | https://twitter.com/stickergrub/status/7099191... | 12 | 10 | None | None | None | pupper | None |
| 1238 | 712097430750289920 | NaN | NaN | 2016-03-22 02:03:52 +0000 | <a href="http://twitter.com/download/iphone" r... | I can't even comprehend how confused this dog ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712097430... | 10 | 10 | None | None | None | None | None |
| 1239 | 712092745624633345 | NaN | NaN | 2016-03-22 01:45:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Steven. He's inverted af. Also very he... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712092745... | 7 | 10 | Steven | None | None | None | None |
| 1240 | 712085617388212225 | NaN | NaN | 2016-03-22 01:16:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Olive and Ruby. They are best bud... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712085617... | 11 | 10 | Olive | None | None | None | None |
| 1241 | 712065007010385924 | NaN | NaN | 2016-03-21 23:55:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chester. He's clearly in charge of the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/712065007... | 6 | 10 | Chester | None | None | None | None |
| 1242 | 711998809858043904 | NaN | NaN | 2016-03-21 19:31:59 +0000 | <a href="http://twitter.com/download/iphone" r... | RT @twitter: @dog_rates Awesome Tweet! 12/10. ... | 7.119983e+17 | 7.832140e+05 | 2016-03-21 19:29:52 +0000 | https://twitter.com/twitter/status/71199827977... | 12 | 10 | None | None | None | None | None |
| 1243 | 711968124745228288 | NaN | NaN | 2016-03-21 17:30:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Winston. He's trapped in a cup of coffee.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711968124... | 10 | 10 | Winston | None | None | pupper | None |
| 1244 | 711743778164514816 | NaN | NaN | 2016-03-21 02:38:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Roosevelt. He's calculating the best case... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711743778... | 11 | 10 | Roosevelt | None | None | None | None |
| 1245 | 711732680602345472 | NaN | NaN | 2016-03-21 01:54:29 +0000 | <a href="http://twitter.com/download/iphone" r... | I want to hear the joke this dog was just told... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711732680... | 10 | 10 | None | None | None | None | None |
| 1246 | 711694788429553666 | NaN | NaN | 2016-03-20 23:23:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh. My. God. 13/10 magical af https://t.co/Ezu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711694788... | 13 | 10 | None | None | None | None | None |
| 1247 | 711652651650457602 | NaN | NaN | 2016-03-20 20:36:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gary. He just wanted to say hi. 9/10 v... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711652651... | 9 | 10 | Gary | None | None | None | None |
| 1248 | 711363825979756544 | NaN | NaN | 2016-03-20 01:28:47 +0000 | <a href="http://twitter.com/download/iphone" r... | "Please, no puparazzi" 11/10 https://t.co/nJIX... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711363825... | 11 | 10 | None | None | None | None | None |
| 1249 | 711306686208872448 | NaN | NaN | 2016-03-19 21:41:44 +0000 | <a href="http://twitter.com/download/iphone" r... | What hooligan sent in pictures w/out a dog in ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711306686... | 3 | 10 | None | None | None | None | None |
| 1250 | 711008018775851008 | NaN | NaN | 2016-03-19 01:54:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chuckles. He had a balloon but he acci... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/711008018... | 11 | 10 | Chuckles | None | None | pupper | None |
| 1251 | 710997087345876993 | NaN | NaN | 2016-03-19 01:11:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Milo and Amos. They are the best of pals.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710997087... | 12 | 10 | Milo | None | None | None | None |
| 1252 | 710844581445812225 | NaN | NaN | 2016-03-18 15:05:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Staniel. His selfie game is strong af.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710844581... | 10 | 10 | Staniel | None | None | None | None |
| 1253 | 710833117892898816 | NaN | NaN | 2016-03-18 14:19:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Sora. She's an Egyptian Pumpernic... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710833117... | 12 | 10 | Sora | None | None | None | None |
| 1254 | 710658690886586372 | NaN | NaN | 2016-03-18 02:46:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a brigade of puppers. All look very pre... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710658690... | 80 | 80 | None | None | None | None | None |
| 1255 | 710609963652087808 | NaN | NaN | 2016-03-17 23:33:12 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | I've watched this a million times and you prob... | NaN | NaN | NaN | https://vine.co/v/idaTpwH5TgU | 12 | 10 | None | None | None | None | None |
| 1256 | 710588934686908417 | NaN | NaN | 2016-03-17 22:09:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Beemo. He's a Chubberflop mix. 12/10 w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710588934... | 12 | 10 | Beemo | None | None | None | None |
| 1257 | 710296729921429505 | NaN | NaN | 2016-03-17 02:48:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Oshie. 12/10 please enjoy (vid by @cat... | NaN | NaN | NaN | https://vine.co/v/iw9hUFAMerV | 12 | 10 | Oshie | None | None | None | None |
| 1258 | 710283270106132480 | NaN | NaN | 2016-03-17 01:55:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gunner. He's a Figamus Newton. King of... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710283270... | 11 | 10 | Gunner | None | None | None | None |
| 1259 | 710272297844797440 | NaN | NaN | 2016-03-17 01:11:26 +0000 | <a href="http://twitter.com/download/iphone" r... | We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710272297... | 11 | 10 | infuriating | None | None | None | None |
| 1260 | 710269109699739648 | NaN | NaN | 2016-03-17 00:58:46 +0000 | <a href="http://twitter.com/download/iphone" r... | The squad is back for St. Patrick's Day! ☘ 💚\n... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710269109... | 13 | 10 | None | None | None | None | None |
| 1261 | 710153181850935296 | NaN | NaN | 2016-03-16 17:18:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lacy. She's tipping her hat to you. Da... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710153181... | 11 | 10 | Lacy | None | None | None | None |
| 1262 | 710140971284037632 | NaN | NaN | 2016-03-16 16:29:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tater. His underbite is fierce af. Doe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710140971... | 8 | 10 | Tater | None | None | None | None |
| 1263 | 710117014656950272 | NaN | NaN | 2016-03-16 14:54:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper got her hair chalked for her birth... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/710117014... | 11 | 10 | None | None | None | pupper | None |
| 1264 | 709918798883774466 | NaN | NaN | 2016-03-16 01:46:45 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Watson. He's a Suzuki Tickleboop. Leader ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709918798... | 12 | 10 | Watson | None | None | None | None |
| 1265 | 709901256215666688 | NaN | NaN | 2016-03-16 00:37:03 +0000 | <a href="http://twitter.com/download/iphone" r... | WeRateDogs stickers are here and they're 12/10... | NaN | NaN | NaN | http://goo.gl/ArWZfi,https://twitter.com/dog_r... | 12 | 10 | None | None | None | None | None |
| 1266 | 709852847387627521 | NaN | NaN | 2016-03-15 21:24:41 +0000 | <a href="http://twitter.com/download/iphone" r... | *lets out a tiny whimper and then collapses* .... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709852847... | 12 | 10 | None | None | None | None | None |
| 1267 | 709566166965075968 | NaN | NaN | 2016-03-15 02:25:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Olaf. He's gotta be rare. Seems sturdy... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709566166... | 12 | 10 | Olaf | None | None | None | None |
| 1268 | 709556954897764353 | NaN | NaN | 2016-03-15 01:48:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cecil. She's a Gigglefloof Poofer. Out... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709556954... | 12 | 10 | Cecil | None | None | None | None |
| 1269 | 709519240576036864 | NaN | NaN | 2016-03-14 23:19:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Vince. He's a Gregorian Flapjeck. Whit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709519240... | 9 | 10 | Vince | None | None | None | None |
| 1270 | 709449600415961088 | NaN | NaN | 2016-03-14 18:42:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Karma. She's just a head. Lost body durin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709449600... | 10 | 10 | Karma | None | None | None | None |
| 1271 | 709409458133323776 | NaN | NaN | 2016-03-14 16:02:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Billy. He sensed a squirrel. 8/10 damn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709409458... | 8 | 10 | Billy | None | None | None | None |
| 1272 | 709225125749587968 | NaN | NaN | 2016-03-14 03:50:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Walker. He's a Butternut Khalifa. Appe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709225125... | 11 | 10 | Walker | None | None | None | None |
| 1273 | 709207347839836162 | NaN | NaN | 2016-03-14 02:39:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She's trying on her prom dress.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709207347... | 11 | 10 | Penny | None | None | None | None |
| 1274 | 709198395643068416 | NaN | NaN | 2016-03-14 02:04:08 +0000 | <a href="http://twitter.com/download/iphone" r... | From left to right:\nCletus, Jerome, Alejandro... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709198395... | 45 | 50 | None | None | None | None | None |
| 1275 | 709179584944730112 | NaN | NaN | 2016-03-14 00:49:23 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Sammy. He's in a tree. Very excited ab... | NaN | NaN | NaN | https://vine.co/v/iwAjdlEjwMl | 13 | 10 | Sammy | None | None | None | None |
| 1276 | 709158332880297985 | NaN | NaN | 2016-03-13 23:24:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rodney. He's a Ukranian Boomchicka. Outsi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709158332... | 10 | 10 | Rodney | None | None | None | None |
| 1277 | 709042156699303936 | NaN | NaN | 2016-03-13 15:43:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Klevin. He's addicted to sandwiches (y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/709042156... | 9 | 10 | Klevin | None | None | None | None |
| 1278 | 708853462201716736 | NaN | NaN | 2016-03-13 03:13:29 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Lucy. She doesn't understand fetch. 8/... | NaN | NaN | NaN | https://vine.co/v/iHl2UDEBZ95 | 8 | 10 | Lucy | None | None | None | None |
| 1279 | 708845821941387268 | NaN | NaN | 2016-03-13 02:43:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper with magic eyes. Not wearing a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708845821... | 9 | 10 | None | None | None | pupper | None |
| 1280 | 708834316713893888 | NaN | NaN | 2016-03-13 01:57:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Malikai. He was rolling around having fun... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708834316... | 10 | 10 | Malikai | None | None | None | None |
| 1281 | 708810915978854401 | NaN | NaN | 2016-03-13 00:24:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mister. He's a wonderful father to his... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708810915... | 10 | 10 | Mister | None | None | None | None |
| 1282 | 708738143638450176 | NaN | NaN | 2016-03-12 19:35:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Coco. She gets to stay on the Bachelor... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708738143... | 11 | 10 | Coco | None | None | None | None |
| 1283 | 708711088997666817 | NaN | NaN | 2016-03-12 17:47:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Smokey. He really likes tennis balls. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708711088... | 11 | 10 | Smokey | None | None | None | None |
| 1284 | 708479650088034305 | NaN | NaN | 2016-03-12 02:28:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Bear. He's a Beneboop Cumberclap. Extreme... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708479650... | 13 | 10 | Bear | None | None | None | None |
| 1285 | 708469915515297792 | NaN | NaN | 2016-03-12 01:49:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bobble. He's a Croatian Galifianakis. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708469915... | 11 | 10 | Bobble | None | None | None | None |
| 1286 | 708400866336894977 | NaN | NaN | 2016-03-11 21:15:02 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | RT if you are as ready for summer as this pup ... | NaN | NaN | NaN | https://vine.co/v/iHFqnjKVbIQ | 12 | 10 | None | None | None | None | None |
| 1287 | 708356463048204288 | NaN | NaN | 2016-03-11 18:18:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. That is his castle. He protect... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708356463... | 10 | 10 | Oliver | None | None | None | None |
| 1288 | 708349470027751425 | NaN | NaN | 2016-03-11 17:50:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is River. He's changing the trumpet game.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708349470... | 11 | 10 | River | None | None | None | None |
| 1289 | 708149363256774660 | NaN | NaN | 2016-03-11 04:35:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jebberson. He's the reigning hide and ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708149363... | 10 | 10 | Jebberson | None | None | None | None |
| 1290 | 708130923141795840 | NaN | NaN | 2016-03-11 03:22:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Please stop sending in non canines like this G... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708130923... | 11 | 10 | None | None | None | None | None |
| 1291 | 708119489313951744 | NaN | NaN | 2016-03-11 02:36:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He basks in the glory of rebel... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708119489... | 9 | 10 | Cooper | None | None | None | None |
| 1292 | 708109389455101952 | NaN | NaN | 2016-03-11 01:56:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Remington. He was caught off guard by ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708109389... | 10 | 10 | Remington | None | None | None | None |
| 1293 | 708026248782585858 | NaN | NaN | 2016-03-10 20:26:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Everybody stop what you're doing and watch thi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/708026248... | 13 | 10 | None | None | None | None | None |
| 1294 | 707995814724026368 | NaN | NaN | 2016-03-10 18:25:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Farfle. He lost his back legs during t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707995814... | 12 | 10 | Farfle | None | None | None | None |
| 1295 | 707983188426153984 | 7.079801e+17 | 2.319108e+09 | 2016-03-10 17:35:20 +0000 | <a href="http://twitter.com/download/iphone" r... | @serial @MrRoles OH MY GOD I listened to all o... | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 1296 | 707969809498152960 | NaN | NaN | 2016-03-10 16:42:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rufus. He's a Honeysuckle Firefox. Curly ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707969809... | 11 | 10 | Rufus | None | None | None | None |
| 1297 | 707776935007539200 | NaN | NaN | 2016-03-10 03:55:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sadie. She's a Bohemian Rhapsody. Rema... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707776935... | 11 | 10 | Sadie | None | None | None | None |
| 1298 | 707741517457260545 | NaN | NaN | 2016-03-10 01:35:01 +0000 | <a href="http://twitter.com/download/iphone" r... | When your roommate eats your leftover Chili's ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707741517... | 10 | 10 | None | None | None | None | None |
| 1299 | 707738799544082433 | NaN | NaN | 2016-03-10 01:24:13 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | He's doing his best. 12/10 very impressive tha... | NaN | NaN | NaN | https://vine.co/v/hUvHKYrdb1d | 12 | 10 | None | None | None | None | None |
| 1300 | 707693576495472641 | NaN | NaN | 2016-03-09 22:24:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jiminus. He's in a tub for some reason... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707693576... | 7 | 10 | Jiminus | None | None | None | None |
| 1301 | 707629649552134146 | NaN | NaN | 2016-03-09 18:10:30 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | We usually don't rate marshmallows but this on... | NaN | NaN | NaN | https://vine.co/v/iHhBOTl5p9z | 10 | 10 | None | None | None | None | None |
| 1302 | 707610948723478529 | NaN | NaN | 2016-03-09 16:56:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harper. She scraped her elbow attempti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707610948... | 12 | 10 | Harper | None | None | None | None |
| 1303 | 707420581654872064 | NaN | NaN | 2016-03-09 04:19:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Keurig. He's a rare dog. Laughs like a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707420581... | 4 | 10 | Keurig | None | None | None | None |
| 1304 | 707411934438625280 | NaN | NaN | 2016-03-09 03:45:22 +0000 | <a href="http://twitter.com/download/iphone" r... | "I shall trip the big pupper with leash. Big p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707411934... | 11 | 10 | None | None | None | pupper | None |
| 1305 | 707387676719185920 | NaN | NaN | 2016-03-09 02:08:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Clarkus. He's a Skinny Eastern Worcesters... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707387676... | 10 | 10 | Clarkus | None | None | None | None |
| 1306 | 707377100785885184 | NaN | NaN | 2016-03-09 01:26:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog just brutally murdered a snowman. Cur... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707377100... | 9 | 10 | None | None | None | None | None |
| 1307 | 707315916783140866 | NaN | NaN | 2016-03-08 21:23:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Finnegus. He's trapped in a snow globe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707315916... | 10 | 10 | Finnegus | None | None | pupper | None |
| 1308 | 707297311098011648 | NaN | NaN | 2016-03-08 20:09:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cassie. She can go from sweet to scary... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707297311... | 10 | 10 | Cassie | None | None | None | None |
| 1309 | 707059547140169728 | NaN | NaN | 2016-03-08 04:25:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Cupcake. She's an Icelandic Dippe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707059547... | 11 | 10 | Cupcake | None | None | None | None |
| 1310 | 707038192327901184 | NaN | NaN | 2016-03-08 03:00:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kathmandu. He sees every move you make... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707038192... | 10 | 10 | Kathmandu | None | None | None | None |
| 1311 | 707021089608753152 | NaN | NaN | 2016-03-08 01:52:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He's a Dasani Episcopalian. Go... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707021089... | 12 | 10 | Tucker | None | None | None | None |
| 1312 | 707014260413456384 | NaN | NaN | 2016-03-08 01:25:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ellie. She requests to be carried arou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/707014260... | 11 | 10 | Ellie | None | None | None | None |
| 1313 | 706904523814649856 | NaN | NaN | 2016-03-07 18:09:06 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Ever seen a dog pet another dog? Both 13/10 tr... | NaN | NaN | NaN | https://vine.co/v/iXQAm5Lrgrh | 13 | 10 | None | None | None | None | None |
| 1314 | 706901761596989440 | NaN | NaN | 2016-03-07 17:58:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Elliot. He's blocking the roadway. Dow... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706901761... | 3 | 10 | Elliot | None | None | None | None |
| 1315 | 706681918348251136 | NaN | NaN | 2016-03-07 03:24:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Katie. She's a Mitsubishi Hufflep... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706681918... | 12 | 10 | Katie | None | None | None | None |
| 1316 | 706644897839910912 | NaN | NaN | 2016-03-07 00:57:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Shadow. She's tired of the responsibiliti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706644897... | 9 | 10 | Shadow | None | None | None | None |
| 1317 | 706593038911545345 | NaN | NaN | 2016-03-06 21:31:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a sneak peek of me on spring break. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706593038... | 10 | 10 | None | None | None | None | None |
| 1318 | 706538006853918722 | NaN | NaN | 2016-03-06 17:52:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver (pronounced "Ricardo"). He's a ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706538006... | 11 | 10 | Oliver | None | None | None | None |
| 1319 | 706516534877929472 | NaN | NaN | 2016-03-06 16:27:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Please enjoy this pup in a cooler. Permanently... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706516534... | 12 | 10 | None | None | None | None | None |
| 1320 | 706346369204748288 | NaN | NaN | 2016-03-06 05:11:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Koda. She's a Beneboom Cumberwiggle. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706346369... | 12 | 10 | Koda | None | None | None | None |
| 1321 | 706310011488698368 | NaN | NaN | 2016-03-06 02:46:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a very sleepy pupper. Thinks it's an ai... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706310011... | 12 | 10 | None | None | None | pupper | None |
| 1322 | 706291001778950144 | NaN | NaN | 2016-03-06 01:31:11 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're just relaxin and having a swell ti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706291001... | 11 | 10 | None | None | None | None | None |
| 1323 | 706265994973601792 | NaN | NaN | 2016-03-05 23:51:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kara. She's been trying to solve that ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706265994... | 11 | 10 | Kara | None | None | None | None |
| 1324 | 706169069255446529 | NaN | NaN | 2016-03-05 17:26:40 +0000 | <a href="http://twitter.com/download/iphone" r... | He was doing his best. 12/10 I'll be his lawye... | NaN | NaN | NaN | https://twitter.com/wgnnews/status/70616592080... | 12 | 10 | None | None | None | None | None |
| 1325 | 706166467411222528 | NaN | NaN | 2016-03-05 17:16:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dexter. He's a shy pup. Doesn't bark m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/706166467... | 7 | 10 | Dexter | None | None | None | None |
| 1326 | 706153300320784384 | NaN | NaN | 2016-03-05 16:24:01 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Layla. She's giving you a standing ova... | NaN | NaN | NaN | https://vine.co/v/iXidJXBJ3P9 | 13 | 10 | Layla | None | None | None | None |
| 1327 | 705975130514706432 | NaN | NaN | 2016-03-05 04:36:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Adele. Her tongue flies out of her mou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705975130... | 10 | 10 | Adele | None | None | pupper | None |
| 1328 | 705970349788291072 | NaN | NaN | 2016-03-05 04:17:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She's a Venetian Kerploof. Suppo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705970349... | 12 | 10 | Lucy | None | None | None | None |
| 1329 | 705898680587526145 | NaN | NaN | 2016-03-04 23:32:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Max. He's a Fallopian Cephalopuff. Eyes a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705898680... | 10 | 10 | Max | None | None | None | None |
| 1330 | 705786532653883392 | 7.032559e+17 | 4.196984e+09 | 2016-03-04 16:06:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Seriously, add us 🐶 11/10 for sad wet pupper h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705786532... | 11 | 10 | None | None | None | pupper | None |
| 1331 | 705591895322394625 | NaN | NaN | 2016-03-04 03:13:11 +0000 | <a href="http://twitter.com/download/iphone" r... | "Ma'am, for the last time, I'm not authorized ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705591895... | 11 | 10 | None | None | None | None | None |
| 1332 | 705475953783398401 | NaN | NaN | 2016-03-03 19:32:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Zara. She found a sandal and coul... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705475953... | 12 | 10 | Zara | None | None | None | None |
| 1333 | 705442520700944385 | NaN | NaN | 2016-03-03 17:19:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He only wakes up to switch gea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705442520... | 12 | 10 | Cooper | None | None | None | None |
| 1334 | 705428427625635840 | NaN | NaN | 2016-03-03 16:23:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ambrose. He's an Alfalfa Ballyhoo. Dra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705428427... | 11 | 10 | Ambrose | None | None | pupper | None |
| 1335 | 705239209544720384 | NaN | NaN | 2016-03-03 03:51:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jimothy. He lost his body during the t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705239209... | 11 | 10 | Jimothy | None | None | None | None |
| 1336 | 705223444686888960 | NaN | NaN | 2016-03-03 02:49:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bode. He's a heavy sleeper. 9/10 https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705223444... | 9 | 10 | Bode | None | None | None | None |
| 1337 | 705102439679201280 | NaN | NaN | 2016-03-02 18:48:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Terrenth. He just stubbed his toe. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705102439... | 10 | 10 | Terrenth | None | None | None | None |
| 1338 | 705066031337840642 | NaN | NaN | 2016-03-02 16:23:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reese. He's a Chilean Sohcahtoa. Loves... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/705066031... | 12 | 10 | Reese | None | None | None | None |
| 1339 | 704871453724954624 | 6.671522e+17 | 4.196984e+09 | 2016-03-02 03:30:25 +0000 | <a href="http://twitter.com/download/iphone" r... | I found a forest Pipsy. 12/10 https://t.co/mIQ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704871453... | 12 | 10 | None | None | None | None | None |
| 1340 | 704859558691414016 | NaN | NaN | 2016-03-02 02:43:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a heartbreaking scene of an incredible... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704859558... | 10 | 10 | a | None | None | pupper | None |
| 1341 | 704847917308362754 | NaN | NaN | 2016-03-02 01:56:53 +0000 | <a href="http://twitter.com/download/iphone" r... | "Yes hi could I get a number 4 with no pickles... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704847917... | 12 | 10 | None | None | None | None | None |
| 1342 | 704819833553219584 | NaN | NaN | 2016-03-02 00:05:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chesterson. He's a Bolivian Scoop Dog.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704819833... | 7 | 10 | Chesterson | None | None | None | None |
| 1343 | 704761120771465216 | NaN | NaN | 2016-03-01 20:11:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper killed this great white in an epic... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704761120... | 13 | 10 | None | None | None | pupper | None |
| 1344 | 704499785726889984 | NaN | NaN | 2016-03-01 02:53:32 +0000 | <a href="http://twitter.com/download/iphone" r... | When you wake up from a long nap and have no i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704499785... | 12 | 10 | None | None | None | None | None |
| 1345 | 704491224099647488 | 7.044857e+17 | 2.878549e+07 | 2016-03-01 02:19:31 +0000 | <a href="http://twitter.com/download/iphone" r... | 13/10 hero af\n@ABC | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1346 | 704480331685040129 | NaN | NaN | 2016-03-01 01:36:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lucia. She's a Cumulonimbus Floofmallow. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704480331... | 11 | 10 | Lucia | None | None | None | None |
| 1347 | 704364645503647744 | NaN | NaN | 2016-02-29 17:56:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Bisquick. He's a Beneplop Cumbers... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704364645... | 12 | 10 | Bisquick | None | None | None | None |
| 1348 | 704347321748819968 | NaN | NaN | 2016-02-29 16:47:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ralphson. He's very confused. Wonderin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704347321... | 10 | 10 | Ralphson | None | None | pupper | None |
| 1349 | 704134088924532736 | NaN | NaN | 2016-02-29 02:40:23 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This sneezy pupper is just adorable af. 12/10 ... | NaN | NaN | NaN | https://vine.co/v/igW2OEwu9vg | 12 | 10 | None | None | None | pupper | None |
| 1350 | 704113298707505153 | NaN | NaN | 2016-02-29 01:17:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Stanley. He's an inverted Uzbekistani wat... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704113298... | 8 | 10 | Stanley | None | None | None | None |
| 1351 | 704054845121142784 | NaN | NaN | 2016-02-28 21:25:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a whole flock of puppers. 60/50 I'll ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/704054845... | 60 | 50 | a | None | None | None | None |
| 1352 | 703774238772166656 | NaN | NaN | 2016-02-28 02:50:28 +0000 | <a href="http://twitter.com/download/iphone" r... | "YOU CAN'T HANDLE THE TRUTH" both 10/10 https:... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703774238... | 10 | 10 | None | None | None | None | None |
| 1353 | 703769065844768768 | NaN | NaN | 2016-02-28 02:29:55 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're trying to watch your favorite tv s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703769065... | 10 | 10 | None | None | None | None | None |
| 1354 | 703631701117943808 | NaN | NaN | 2016-02-27 17:24:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bella. Based on this picture she's at ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703631701... | 11 | 10 | Bella | None | None | None | None |
| 1355 | 703611486317502464 | NaN | NaN | 2016-02-27 16:03:45 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Scooter. He's experiencing the pupper equ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703611486... | 10 | 10 | Scooter | None | None | pupper | None |
| 1356 | 703425003149250560 | 7.030419e+17 | 4.196984e+09 | 2016-02-27 03:42:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Really guys? Again? I know this is a rare Alba... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703425003... | 9 | 10 | None | None | None | None | None |
| 1357 | 703407252292673536 | NaN | NaN | 2016-02-27 02:32:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper doesn't understand gates. 10/10 so... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703407252... | 10 | 10 | None | None | None | pupper | None |
| 1358 | 703382836347330562 | NaN | NaN | 2016-02-27 00:55:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He's a West Side Niddlewog. M... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703382836... | 12 | 10 | Charlie | None | None | None | None |
| 1359 | 703356393781329922 | NaN | NaN | 2016-02-26 23:10:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Socks. That water pup w the super legs... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703356393... | 9 | 10 | Socks | None | None | None | None |
| 1360 | 703268521220972544 | NaN | NaN | 2016-02-26 17:20:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Friday here's a sleepy pupper 12/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703268521... | 12 | 10 | None | None | None | pupper | None |
| 1361 | 703079050210877440 | NaN | NaN | 2016-02-26 04:48:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Butternut Cumberfloof. It's not wind... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703079050... | 11 | 10 | a | None | None | None | None |
| 1362 | 703041949650034688 | NaN | NaN | 2016-02-26 02:20:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is an East African Chalupa Seal. We only ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/703041949... | 10 | 10 | an | None | None | None | None |
| 1363 | 702932127499816960 | NaN | NaN | 2016-02-25 19:04:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chip. He's an Upper West Nile Pantaloo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702932127... | 6 | 10 | Chip | None | None | None | None |
| 1364 | 702899151802126337 | NaN | NaN | 2016-02-25 16:53:11 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Say hello to Luna. Her tongue is malfunctionin... | NaN | NaN | NaN | https://vine.co/v/i6iIrBwnTFI | 12 | 10 | Luna | None | None | None | None |
| 1365 | 702684942141153280 | NaN | NaN | 2016-02-25 02:42:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She's sick of these bullshit gen... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702684942... | 11 | 10 | Lucy | None | None | None | None |
| 1366 | 702671118226825216 | NaN | NaN | 2016-02-25 01:47:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rambo & Kiwi. Rambo's the pup with th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702671118... | 10 | 10 | Rambo | None | None | None | None |
| 1367 | 702598099714314240 | NaN | NaN | 2016-02-24 20:56:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sansa. She's gotten too big for her ch... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702598099... | 11 | 10 | Sansa | None | None | pupper | None |
| 1368 | 702539513671897089 | NaN | NaN | 2016-02-24 17:04:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Wild Tuscan Poofwiggle. Careful not ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702539513... | 12 | 10 | a | None | None | None | None |
| 1369 | 702332542343577600 | NaN | NaN | 2016-02-24 03:21:41 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Rudy. He's going to be a star. 13/10 t... | NaN | NaN | NaN | https://vine.co/v/irlDujgwOjd | 13 | 10 | Rudy | None | None | None | None |
| 1370 | 702321140488925184 | NaN | NaN | 2016-02-24 02:36:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Please enjoy this picture as much as I did. 12... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702321140... | 12 | 10 | None | None | None | None | None |
| 1371 | 702276748847800320 | NaN | NaN | 2016-02-23 23:39:59 +0000 | <a href="http://twitter.com/download/iphone" r... | "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOV... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702276748... | 11 | 10 | None | None | None | None | None |
| 1372 | 702217446468493312 | NaN | NaN | 2016-02-23 19:44:20 +0000 | <a href="http://twitter.com/download/iphone" r... | I know it's tempting, but please stop sending ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/702217446... | 9 | 10 | None | None | None | None | None |
| 1373 | 701981390485725185 | NaN | NaN | 2016-02-23 04:06:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fiji. She's a Powdered Stegafloof. Ver... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701981390... | 12 | 10 | Fiji | None | None | None | None |
| 1374 | 701952816642965504 | NaN | NaN | 2016-02-23 02:12:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rilo. He's a Northern Curly Ticonderoga. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701952816... | 11 | 10 | Rilo | None | None | None | None |
| 1375 | 701889187134500865 | NaN | NaN | 2016-02-22 21:59:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bilbo. He's not emotionally prepared t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701889187... | 11 | 10 | Bilbo | None | None | None | None |
| 1376 | 701805642395348998 | NaN | NaN | 2016-02-22 16:27:58 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Please pray for this pupper. Nothing wrong wit... | NaN | NaN | NaN | https://vine.co/v/ivV6Y37mH5Z | 11 | 10 | None | None | None | pupper | None |
| 1377 | 701601587219795968 | NaN | NaN | 2016-02-22 02:57:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Coopson. He's a Blingin Schnitzel. Bui... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701601587... | 10 | 10 | Coopson | None | None | None | None |
| 1378 | 701570477911896070 | NaN | NaN | 2016-02-22 00:53:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Yoda. He's a Zimbabwean Rutabaga. Frea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701570477... | 9 | 10 | Yoda | None | None | None | None |
| 1379 | 701545186879471618 | NaN | NaN | 2016-02-21 23:13:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Millie. She's practicing her dive form fo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701545186... | 10 | 10 | Millie | None | None | pupper | None |
| 1380 | 701214700881756160 | NaN | NaN | 2016-02-21 01:19:47 +0000 | <a href="http://twitter.com/download/iphone" r... | I'm not sure what's happening here, but it's p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/701214700... | 12 | 10 | None | None | None | None | None |
| 1381 | 700890391244103680 | NaN | NaN | 2016-02-20 03:51:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chet. He's dapper af. His owners want ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700890391... | 11 | 10 | Chet | None | None | None | None |
| 1382 | 700864154249383937 | NaN | NaN | 2016-02-20 02:06:50 +0000 | <a href="http://twitter.com/download/iphone" r... | "Pupper is a present to world. Here is a bow f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700864154... | 12 | 10 | a | None | None | pupper | None |
| 1383 | 700847567345688576 | NaN | NaN | 2016-02-20 01:00:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Crouton. He's a Galapagos Boonwiddle. Has... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700847567... | 10 | 10 | Crouton | None | None | None | None |
| 1384 | 700796979434098688 | NaN | NaN | 2016-02-19 21:39:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Daniel. He's a neat pup. Exotic af. Cu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700796979... | 7 | 10 | Daniel | None | None | None | None |
| 1385 | 700747788515020802 | NaN | NaN | 2016-02-19 18:24:26 +0000 | <a href="http://twitter.com/download/iphone" r... | We only rate dogs. Pls stop sending in non-can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700747788... | 11 | 10 | very | None | None | None | None |
| 1386 | 700518061187723268 | NaN | NaN | 2016-02-19 03:11:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Vincent. He's the man your girl is wit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700518061... | 10 | 10 | Vincent | None | None | None | None |
| 1387 | 700505138482569216 | NaN | NaN | 2016-02-19 02:20:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kaia. She's just cute as hell. 12/10 I... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700505138... | 12 | 10 | Kaia | None | None | None | None |
| 1388 | 700462010979500032 | NaN | NaN | 2016-02-18 23:28:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Murphy. He's a mini golden retriever. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700462010... | 6 | 10 | Murphy | None | None | None | None |
| 1389 | 700167517596164096 | NaN | NaN | 2016-02-18 03:58:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dotsy. She's stuck as hell. 10/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700167517... | 10 | 10 | Dotsy | None | None | None | None |
| 1390 | 700151421916807169 | NaN | NaN | 2016-02-18 02:54:41 +0000 | <a href="http://twitter.com/download/iphone" r... | If a pupper gave that to me I'd probably start... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700151421... | 11 | 10 | None | None | None | pupper | None |
| 1391 | 700143752053182464 | NaN | NaN | 2016-02-18 02:24:13 +0000 | <a href="http://twitter.com/download/iphone" r... | When it's Janet from accounting's birthday but... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700143752... | 10 | 10 | None | None | None | pupper | None |
| 1392 | 700062718104104960 | NaN | NaN | 2016-02-17 21:02:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Eazy-E. He's colorful af. Must be rare... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700062718... | 6 | 10 | Eazy | None | None | None | None |
| 1393 | 700029284593901568 | NaN | NaN | 2016-02-17 18:49:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Coops. His ship is taking on water. So... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700029284... | 10 | 10 | Coops | None | None | None | None |
| 1394 | 700002074055016451 | NaN | NaN | 2016-02-17 17:01:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Thumas. He covered himself in nanners ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/700002074... | 9 | 10 | Thumas | None | None | None | None |
| 1395 | 699801817392291840 | NaN | NaN | 2016-02-17 03:45:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He began to tear up when his b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699801817... | 11 | 10 | Cooper | None | None | pupper | None |
| 1396 | 699788877217865730 | NaN | NaN | 2016-02-17 02:54:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Nala. She's a Freckled High Brusc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699788877... | 12 | 10 | Nala | None | None | None | None |
| 1397 | 699779630832685056 | NaN | NaN | 2016-02-17 02:17:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Take all my money. 10/10 https://t.co/B28ebc5LzQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699779630... | 10 | 10 | None | None | None | None | None |
| 1398 | 699775878809702401 | NaN | NaN | 2016-02-17 02:02:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Fillup. Spaghetti is his main weakness. A... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699775878... | 11 | 10 | Fillup | None | None | None | None |
| 1399 | 699691744225525762 | NaN | NaN | 2016-02-16 20:28:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dave. He's a tropical pup. Short lil l... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699691744... | 5 | 10 | Dave | None | None | None | None |
| 1400 | 699446877801091073 | NaN | NaN | 2016-02-16 04:15:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He's undercover in all these p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699446877... | 12 | 10 | Archie | None | None | None | None |
| 1401 | 699434518667751424 | NaN | NaN | 2016-02-16 03:25:58 +0000 | <a href="http://twitter.com/download/iphone" r... | I know this is a tad late but here's a wonderf... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699434518... | 12 | 10 | None | None | None | pupper | None |
| 1402 | 699423671849451520 | NaN | NaN | 2016-02-16 02:42:52 +0000 | <a href="http://twitter.com/download/iphone" r... | "Don't ever talk to me or my son again." ...bo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699423671... | 10 | 10 | None | None | None | None | None |
| 1403 | 699413908797464576 | NaN | NaN | 2016-02-16 02:04:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Miley. She's a Scandinavian Hollabackgirl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699413908... | 11 | 10 | Miley | None | None | None | None |
| 1404 | 699370870310113280 | NaN | NaN | 2016-02-15 23:13:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Calbert. He doesn't have enough l... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699370870... | 11 | 10 | Calbert | None | None | None | None |
| 1405 | 699323444782047232 | NaN | NaN | 2016-02-15 20:04:36 +0000 | <a href="http://twitter.com/download/iphone" r... | "I'm bathing the children what do you want?" ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699323444... | 10 | 10 | None | None | None | None | None |
| 1406 | 699088579889332224 | NaN | NaN | 2016-02-15 04:31:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charl. He's a bully. Chucks that dumbb... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699088579... | 3 | 10 | Charl | None | None | None | None |
| 1407 | 699079609774645248 | NaN | NaN | 2016-02-15 03:55:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Reagan. He's a Persnicketus Derpson. Grea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699079609... | 8 | 10 | Reagan | None | None | None | None |
| 1408 | 699072405256409088 | NaN | NaN | 2016-02-15 03:27:04 +0000 | <a href="http://twitter.com/download/iphone" r... | ERMAHGERD 12/10 please enjoy https://t.co/7WrA... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699072405... | 12 | 10 | None | None | None | None | None |
| 1409 | 699060279947165696 | NaN | NaN | 2016-02-15 02:38:53 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Yukon. He pukes rainbows. 12/10 magica... | NaN | NaN | NaN | https://vine.co/v/inlmMHxtqDD | 12 | 10 | Yukon | None | None | None | None |
| 1410 | 699036661657767936 | NaN | NaN | 2016-02-15 01:05:02 +0000 | <a href="http://twitter.com/download/iphone" r... | HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/699036661... | 13 | 10 | None | None | None | pupper | None |
| 1411 | 698989035503689728 | NaN | NaN | 2016-02-14 21:55:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliver. He does toe touches in his sle... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698989035... | 13 | 10 | Oliver | None | None | None | None |
| 1412 | 698953797952008193 | NaN | NaN | 2016-02-14 19:35:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet CeCe. She wanted to take a selfie before ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698953797... | 11 | 10 | CeCe | None | None | None | None |
| 1413 | 698907974262222848 | NaN | NaN | 2016-02-14 16:33:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog is never sure if he's doing the right... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698907974... | 10 | 10 | None | None | None | None | None |
| 1414 | 698710712454139905 | NaN | NaN | 2016-02-14 03:29:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cuddles. He's not entirely sure how do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698710712... | 10 | 10 | Cuddles | None | None | None | None |
| 1415 | 698703483621523456 | NaN | NaN | 2016-02-14 03:01:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rusty. He has no respect for POULTRY p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698703483... | 7 | 10 | Rusty | None | None | None | None |
| 1416 | 698635131305795584 | NaN | NaN | 2016-02-13 22:29:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we are witnessing five Guatemalan Birch F... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698635131... | 12 | 10 | None | None | None | None | None |
| 1417 | 698549713696649216 | NaN | NaN | 2016-02-13 16:50:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Claude. He's trying to be seductive bu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698549713... | 9 | 10 | Claude | None | None | None | None |
| 1418 | 698355670425473025 | NaN | NaN | 2016-02-13 03:59:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jessiga. She's a Tasmanian McCringlebe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698355670... | 10 | 10 | Jessiga | None | None | None | None |
| 1419 | 698342080612007937 | NaN | NaN | 2016-02-13 03:05:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maximus. He's training for the tetherb... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698342080... | 11 | 10 | Maximus | None | None | None | None |
| 1420 | 698262614669991936 | NaN | NaN | 2016-02-12 21:49:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Franklin. He's a yoga master. Trying t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698262614... | 11 | 10 | Franklin | None | None | None | None |
| 1421 | 698195409219559425 | NaN | NaN | 2016-02-12 17:22:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Beau & Wilbur. Wilbur stole Beau's be... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698195409... | 9 | 10 | Beau | None | None | None | None |
| 1422 | 698178924120031232 | NaN | NaN | 2016-02-12 16:16:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lily. She accidentally dropped all her... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/698178924... | 10 | 10 | Lily | None | None | None | None |
| 1423 | 697995514407682048 | NaN | NaN | 2016-02-12 04:07:53 +0000 | <a href="http://twitter.com/download/iphone" r... | "Dammit hooman quit playin I jus wanna wheat t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697995514... | 11 | 10 | None | None | None | None | None |
| 1424 | 697990423684476929 | NaN | NaN | 2016-02-12 03:47:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Doug. He's a Draconian Jabbawockee. Ra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697990423... | 11 | 10 | Doug | None | None | None | None |
| 1425 | 697943111201378304 | NaN | NaN | 2016-02-12 00:39:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cassie. She goes door to door trying t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697943111... | 10 | 10 | Cassie | None | None | None | None |
| 1426 | 697881462549430272 | NaN | NaN | 2016-02-11 20:34:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Carter. He wakes up in the morning and... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697881462... | 10 | 10 | Carter | None | None | None | None |
| 1427 | 697630435728322560 | NaN | NaN | 2016-02-11 03:57:11 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Pls make sure ur dogs have gone through some b... | NaN | NaN | NaN | https://vine.co/v/in7ZzHPKzWz | 8 | 10 | None | None | None | None | None |
| 1428 | 697616773278015490 | NaN | NaN | 2016-02-11 03:02:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper doubles as a hallway rug. Very rar... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697616773... | 11 | 10 | None | None | None | pupper | None |
| 1429 | 697596423848730625 | NaN | NaN | 2016-02-11 01:42:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper with a piece of pizza. Two of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697596423... | 11 | 10 | None | None | None | pupper | None |
| 1430 | 697575480820686848 | NaN | NaN | 2016-02-11 00:18:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ole. He's not sure how to gravity. 8/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697575480... | 8 | 10 | Ole | None | None | None | None |
| 1431 | 697516214579523584 | NaN | NaN | 2016-02-10 20:23:19 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Say hello to Pherb. He does parkour. 9/10 http... | NaN | NaN | NaN | https://vine.co/v/i1LriMBmX6W | 9 | 10 | Pherb | None | None | None | None |
| 1432 | 697482927769255936 | NaN | NaN | 2016-02-10 18:11:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Blipson. He's a Doowap Hufflepuff. That U... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697482927... | 11 | 10 | Blipson | None | None | None | None |
| 1433 | 697463031882764288 | NaN | NaN | 2016-02-10 16:51:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Wednesday here's a bucket of pups. 44/40... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697463031... | 44 | 40 | None | None | None | None | None |
| 1434 | 697270446429966336 | NaN | NaN | 2016-02-10 04:06:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bentley. He got stuck on his 3rd homew... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697270446... | 10 | 10 | Bentley | None | None | None | None |
| 1435 | 697259378236399616 | NaN | NaN | 2016-02-10 03:22:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Please stop sending in saber-toothed tigers. T... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697259378... | 8 | 10 | getting | None | None | None | None |
| 1436 | 697255105972801536 | NaN | NaN | 2016-02-10 03:05:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Charlie. He likes to kiss all the big mil... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697255105... | 10 | 10 | Charlie | None | None | None | None |
| 1437 | 697242256848379904 | NaN | NaN | 2016-02-10 02:14:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oakley. He has a massive tumor growing... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/697242256... | 10 | 10 | Oakley | None | None | None | None |
| 1438 | 696900204696625153 | NaN | NaN | 2016-02-09 03:35:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rosie. She's a Benebark Cumberpatch. S... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696900204... | 12 | 10 | Rosie | None | None | None | None |
| 1439 | 696894894812565505 | NaN | NaN | 2016-02-09 03:14:25 +0000 | <a href="http://twitter.com/download/iphone" r... | These two pirates crashed their ship and don't... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696894894... | 9 | 10 | None | None | None | None | None |
| 1440 | 696886256886657024 | NaN | NaN | 2016-02-09 02:40:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys I found the dog from Up. 12/10 https://t.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696886256... | 12 | 10 | None | None | None | None | None |
| 1441 | 696877980375769088 | NaN | NaN | 2016-02-09 02:07:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Misty. She's in a predicament. Not sur... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696877980... | 9 | 10 | Misty | None | None | pupper | None |
| 1442 | 696754882863349760 | NaN | NaN | 2016-02-08 17:58:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reptar. He specifically asked for his ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696754882... | 10 | 10 | Reptar | None | None | None | None |
| 1443 | 696744641916489729 | NaN | NaN | 2016-02-08 17:17:22 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Klevin. He doesn't want his family bra... | NaN | NaN | NaN | https://vine.co/v/i1wrljBUjAu | 10 | 10 | Klevin | None | None | None | None |
| 1444 | 696713835009417216 | NaN | NaN | 2016-02-08 15:14:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Trevith. He's a Swiss Mountain Roadwoo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696713835... | 9 | 10 | Trevith | None | None | pupper | None |
| 1445 | 696518437233913856 | NaN | NaN | 2016-02-08 02:18:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh my god 10/10 for every little hot dog pupper | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | pupper | None |
| 1446 | 696490539101908992 | 6.964887e+17 | 4.196984e+09 | 2016-02-08 00:27:39 +0000 | <a href="http://twitter.com/download/iphone" r... | After reading the comments I may have overesti... | NaN | NaN | NaN | NaN | 1 | 10 | None | None | None | None | None |
| 1447 | 696488710901260288 | NaN | NaN | 2016-02-08 00:20:23 +0000 | <a href="http://twitter.com/download/iphone" r... | 12/10 revolutionary af https://t.co/zKzq4nIY86 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696488710... | 12 | 10 | None | None | None | None | None |
| 1448 | 696405997980676096 | NaN | NaN | 2016-02-07 18:51:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Berb. He just found out that they have... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/696405997... | 7 | 10 | Berb | None | None | None | None |
| 1449 | 696100768806522880 | NaN | NaN | 2016-02-06 22:38:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This poor pupper has been stuck in a vortex si... | NaN | NaN | NaN | https://vine.co/v/i1KWj0vbvA9 | 10 | 10 | None | None | None | pupper | None |
| 1450 | 695816827381944320 | NaN | NaN | 2016-02-06 03:50:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a dog enjoying a sunset. 11/10 would tr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695816827... | 11 | 10 | None | None | None | None | None |
| 1451 | 695794761660297217 | NaN | NaN | 2016-02-06 02:22:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wyatt. His throne is modeled after him... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695794761... | 13 | 10 | Wyatt | None | None | None | None |
| 1452 | 695767669421768709 | 6.753494e+17 | 4.196984e+09 | 2016-02-06 00:35:13 +0000 | <a href="http://twitter.com/download/iphone" r... | If you are aware of who is making these please... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695767669... | 13 | 10 | None | None | None | None | None |
| 1453 | 695629776980148225 | NaN | NaN | 2016-02-05 15:27:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Calvin. He's proof that degrees mean abso... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695629776... | 8 | 10 | Calvin | None | None | None | None |
| 1454 | 695446424020918272 | NaN | NaN | 2016-02-05 03:18:42 +0000 | <a href="http://twitter.com/download/iphone" r... | We normally don't rate unicorns but this one h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695446424... | 12 | 10 | None | None | None | None | None |
| 1455 | 695409464418041856 | NaN | NaN | 2016-02-05 00:51:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bob. He just got back from his job int... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695409464... | 10 | 10 | Bob | None | None | None | None |
| 1456 | 695314793360662529 | NaN | NaN | 2016-02-04 18:35:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Colin. He really likes green beans. It... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695314793... | 10 | 10 | Colin | None | None | None | None |
| 1457 | 695095422348574720 | NaN | NaN | 2016-02-04 04:03:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is just a beautiful pupper good shit evol... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695095422... | 12 | 10 | just | None | None | pupper | None |
| 1458 | 695074328191332352 | NaN | NaN | 2016-02-04 02:40:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lorenzo. He's educated af. Just gradua... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695074328... | 11 | 10 | Lorenzo | None | None | pupper | None |
| 1459 | 695064344191721472 | NaN | NaN | 2016-02-04 02:00:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This may be the greatest video I've ever been ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695064344... | 4 | 10 | None | None | None | None | None |
| 1460 | 695051054296211456 | NaN | NaN | 2016-02-04 01:07:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Brian (pronounced "Kirk"). He's not amuse... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/695051054... | 6 | 10 | Brian | None | None | None | None |
| 1461 | 694925794720792577 | NaN | NaN | 2016-02-03 16:49:55 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Please only send in dogs. This t-rex is very s... | NaN | NaN | NaN | https://vine.co/v/iJvUqWQ166L | 5 | 10 | None | None | None | None | None |
| 1462 | 694905863685980160 | NaN | NaN | 2016-02-03 15:30:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Archie. He's a Bisquick Taj Mapaw. Too... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694905863... | 10 | 10 | Archie | None | None | None | None |
| 1463 | 694669722378485760 | NaN | NaN | 2016-02-02 23:52:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phil. He's an important dog. Can contr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694669722... | 12 | 10 | Phil | None | None | None | None |
| 1464 | 694356675654983680 | 6.706684e+17 | 4.196984e+09 | 2016-02-02 03:08:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper only appears through the hole of a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694356675... | 10 | 10 | None | None | None | pupper | None |
| 1465 | 694352839993344000 | NaN | NaN | 2016-02-02 02:53:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Oliviér. He takes killer selfies. Has a d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694352839... | 10 | 10 | Oliviér | None | None | None | None |
| 1466 | 694342028726001664 | NaN | NaN | 2016-02-02 02:10:14 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | It's okay pup. This happens every time I liste... | NaN | NaN | NaN | https://vine.co/v/iJWKejYdLlh | 11 | 10 | None | None | None | None | None |
| 1467 | 694329668942569472 | NaN | NaN | 2016-02-02 01:21:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Grady. He's very hungry. Too bad no one c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694329668... | 9 | 10 | Grady | None | None | pupper | None |
| 1468 | 694206574471057408 | NaN | NaN | 2016-02-01 17:11:59 +0000 | <a href="http://twitter.com/download/iphone" r... | "Martha come take a look at this. I'm so fed u... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694206574... | 10 | 10 | None | None | None | None | None |
| 1469 | 694183373896572928 | NaN | NaN | 2016-02-01 15:39:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lola. She realized mid hug that she's ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694183373... | 9 | 10 | Lola | None | None | None | None |
| 1470 | 694001791655137281 | NaN | NaN | 2016-02-01 03:38:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chester. He's a Benefloof Cumberbark. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/694001791... | 11 | 10 | Chester | None | None | None | None |
| 1471 | 693993230313091072 | NaN | NaN | 2016-02-01 03:04:14 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | These lil fellas are the best of friends. 12/1... | NaN | NaN | NaN | https://vine.co/v/i5ETazP5hrm | 12 | 10 | None | None | None | None | None |
| 1472 | 693942351086120961 | NaN | NaN | 2016-01-31 23:42:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kobe. He's a Speckled Rorschach. Reque... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693942351... | 10 | 10 | Kobe | None | None | None | None |
| 1473 | 693647888581312512 | NaN | NaN | 2016-01-31 04:11:58 +0000 | <a href="http://twitter.com/download/iphone" r... | What kind of person sends in a pic without a d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693647888... | 7 | 10 | None | None | None | None | None |
| 1474 | 693644216740769793 | 6.936422e+17 | 4.196984e+09 | 2016-01-31 03:57:23 +0000 | <a href="http://twitter.com/download/iphone" r... | BREAKING PUPDATE: I've just been notified that... | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 1475 | 693642232151285760 | NaN | NaN | 2016-01-31 03:49:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Freddery. He's a Westminster Toblerone. S... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693642232... | 9 | 10 | Freddery | None | None | None | None |
| 1476 | 693629975228977152 | NaN | NaN | 2016-01-31 03:00:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper is afraid of its own feet. 12/10 w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693629975... | 12 | 10 | None | None | None | pupper | None |
| 1477 | 693622659251335168 | NaN | NaN | 2016-01-31 02:31:43 +0000 | <a href="http://twitter.com/download/iphone" r... | When you keepin the popcorn bucket in your lap... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693622659... | 10 | 10 | None | None | None | None | None |
| 1478 | 693590843962331137 | NaN | NaN | 2016-01-31 00:25:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Phil. He's big af. Currently destroying t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693590843... | 3 | 10 | Phil | None | None | pupper | None |
| 1479 | 693582294167244802 | 6.935722e+17 | 1.198989e+09 | 2016-01-30 23:51:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Personally I'd give him an 11/10. Not sure why... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 1480 | 693486665285931008 | NaN | NaN | 2016-01-30 17:31:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lincoln. He doesn't understand his new... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693486665... | 11 | 10 | Lincoln | None | None | None | None |
| 1481 | 693280720173801472 | NaN | NaN | 2016-01-30 03:52:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sadie and her 2 pups Shebang & Ruf... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693280720... | 10 | 10 | Sadie | None | None | None | None |
| 1482 | 693267061318012928 | NaN | NaN | 2016-01-30 02:58:42 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Oscar. He can wave. Friendly af. 12/10... | NaN | NaN | NaN | https://vine.co/v/i5n2irFUYWv | 12 | 10 | Oscar | None | None | None | None |
| 1483 | 693262851218264065 | NaN | NaN | 2016-01-30 02:41:58 +0000 | <a href="http://twitter.com/download/iphone" r... | I hope you guys enjoy this beautiful snowy pup... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693262851... | 11 | 10 | None | None | None | pupper | None |
| 1484 | 693231807727280129 | NaN | NaN | 2016-01-30 00:38:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bodie. He's not proud of what he did, ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693231807... | 9 | 10 | Bodie | None | None | None | None |
| 1485 | 693155686491000832 | NaN | NaN | 2016-01-29 19:36:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dunkin. He can only see when he's wet ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693155686... | 12 | 10 | Dunkin | None | None | None | None |
| 1486 | 693109034023534592 | NaN | NaN | 2016-01-29 16:30:45 +0000 | <a href="http://twitter.com/download/iphone" r... | "Thank you friend that was a swell petting" 11... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693109034... | 11 | 10 | None | None | None | None | None |
| 1487 | 693095443459342336 | NaN | NaN | 2016-01-29 15:36:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Milo. He doesn't understand your fancy... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/693095443... | 10 | 10 | Milo | None | None | pupper | None |
| 1488 | 692919143163629568 | NaN | NaN | 2016-01-29 03:56:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Please only send in dogs. Don't submit other t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692919143... | 9 | 10 | None | None | None | None | None |
| 1489 | 692905862751522816 | NaN | NaN | 2016-01-29 03:03:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wally. He's being abducted by aliens. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692905862... | 10 | 10 | Wally | None | None | pupper | None |
| 1490 | 692901601640583168 | NaN | NaN | 2016-01-29 02:46:29 +0000 | <a href="http://twitter.com/download/iphone" r... | "Fuck the system" 10/10 https://t.co/N0OADmCnVV | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692901601... | 10 | 10 | None | None | None | None | None |
| 1491 | 692894228850999298 | NaN | NaN | 2016-01-29 02:17:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Tupawc. He's actually a Christian rapper.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692894228... | 10 | 10 | Tupawc | None | None | None | None |
| 1492 | 692828166163931137 | NaN | NaN | 2016-01-28 21:54:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper just descended from heaven. 12/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692828166... | 12 | 10 | None | None | None | pupper | None |
| 1493 | 692752401762250755 | NaN | NaN | 2016-01-28 16:53:37 +0000 | <a href="http://twitter.com/download/iphone" r... | "Hello yes could I get one pupper to go please... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692752401... | 13 | 10 | None | None | None | pupper | None |
| 1494 | 692568918515392513 | NaN | NaN | 2016-01-28 04:44:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chester. He's been guarding this pumpk... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692568918... | 12 | 10 | Chester | None | None | None | None |
| 1495 | 692535307825213440 | NaN | NaN | 2016-01-28 02:30:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Amber. She's a Fetty Woof. 10/10 would... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692535307... | 10 | 10 | Amber | None | None | None | None |
| 1496 | 692530551048294401 | NaN | NaN | 2016-01-28 02:12:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Cody. He's been to like 80 countr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692530551... | 10 | 10 | Cody | None | None | None | None |
| 1497 | 692423280028966913 | 6.924173e+17 | 4.196984e+09 | 2016-01-27 19:05:49 +0000 | <a href="http://twitter.com/download/iphone" r... | PUPDATE: just noticed this dog has some extra ... | NaN | NaN | NaN | NaN | 9 | 10 | None | None | None | None | None |
| 1498 | 692417313023332352 | NaN | NaN | 2016-01-27 18:42:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Herschel. He's slightly bigger than ur av... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692417313... | 7 | 10 | Herschel | None | None | pupper | None |
| 1499 | 692187005137076224 | NaN | NaN | 2016-01-27 03:26:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a rare Arctic Wubberfloof. Unamused by... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692187005... | 12 | 10 | a | None | None | None | None |
| 1500 | 692158366030913536 | NaN | NaN | 2016-01-27 01:33:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Edgar. He's a Sassafras Puggleflash. N... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692158366... | 10 | 10 | Edgar | None | None | None | None |
| 1501 | 692142790915014657 | 6.920419e+17 | 4.196984e+09 | 2016-01-27 00:31:15 +0000 | <a href="http://twitter.com/download/iphone" r... | These are some pictures of Teddy that further ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692142790... | 13 | 10 | None | None | None | None | None |
| 1502 | 692041934689402880 | NaN | NaN | 2016-01-26 17:50:29 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Teddy. His head is too heavy. 13/10 (v... | NaN | NaN | NaN | https://vine.co/v/iiI3wmqXYmA | 13 | 10 | Teddy | None | None | None | None |
| 1503 | 692017291282812928 | NaN | NaN | 2016-01-26 16:12:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kingsley Wellensworth III. He owns 7 r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/692017291... | 9 | 10 | Kingsley | None | None | None | None |
| 1504 | 691820333922455552 | NaN | NaN | 2016-01-26 03:09:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brockly. He's an uber driver. Falls as... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691820333... | 8 | 10 | Brockly | None | None | None | None |
| 1505 | 691793053716221953 | NaN | NaN | 2016-01-26 01:21:31 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | We usually don't rate penguins but this one is... | NaN | NaN | NaN | https://vine.co/v/OTTVAKw6YlW | 10 | 10 | None | None | None | None | None |
| 1506 | 691756958957883396 | NaN | NaN | 2016-01-25 22:58:05 +0000 | <a href="http://twitter.com/download/iphone" r... | THE BRITISH ARE COMING\nTHE BRITISH ARE COMING... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691756958... | 10 | 10 | None | None | None | None | None |
| 1507 | 691675652215414786 | NaN | NaN | 2016-01-25 17:35:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Richie and Plip. They are the best of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691675652... | 10 | 10 | Richie | None | None | None | None |
| 1508 | 691483041324204033 | NaN | NaN | 2016-01-25 04:49:38 +0000 | <a href="http://twitter.com/download/iphone" r... | When bae says they can't go out but you see th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691483041... | 5 | 10 | None | None | None | None | None |
| 1509 | 691459709405118465 | NaN | NaN | 2016-01-25 03:16:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Leo. He's a Fallopian Puffalope. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691459709... | 12 | 10 | Leo | None | None | None | None |
| 1510 | 691444869282295808 | NaN | NaN | 2016-01-25 02:17:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bailey. She likes flowers. 12/10 https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691444869... | 12 | 10 | Bailey | None | None | None | None |
| 1511 | 691416866452082688 | NaN | NaN | 2016-01-25 00:26:41 +0000 | <a href="http://twitter.com/download/iphone" r... | I present to you... Dog Jesus. 13/10 (he could... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691416866... | 13 | 10 | None | None | None | None | None |
| 1512 | 691321916024623104 | NaN | NaN | 2016-01-24 18:09:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Molly. She's a Peruvian Niddlewog. Lov... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691321916... | 11 | 10 | Molly | None | None | None | None |
| 1513 | 691096613310316544 | NaN | NaN | 2016-01-24 03:14:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see one dog giving a puptalk to anothe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691096613... | 11 | 10 | None | None | None | None | None |
| 1514 | 691090071332753408 | NaN | NaN | 2016-01-24 02:48:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Saturday here's a dog in a mailbox. 12/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/691090071... | 12 | 10 | None | None | None | None | None |
| 1515 | 690989312272396288 | NaN | NaN | 2016-01-23 20:07:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | We've got a doggy down. Requesting backup. 12/... | NaN | NaN | NaN | https://vine.co/v/iOZKZEU2nHq | 12 | 10 | None | None | None | None | None |
| 1516 | 690959652130045952 | NaN | NaN | 2016-01-23 18:09:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This golden is happy to refute the soft mouth ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690959652... | 11 | 10 | None | None | None | None | None |
| 1517 | 690938899477221376 | NaN | NaN | 2016-01-23 16:47:25 +0000 | <a href="http://twitter.com/download/iphone" r... | She thought the sunset was pretty, but I thoug... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690938899... | 10 | 10 | None | None | None | None | None |
| 1518 | 690932576555528194 | NaN | NaN | 2016-01-23 16:22:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Buddy. He's testing out the water. Suc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690932576... | 12 | 10 | Buddy | None | None | None | None |
| 1519 | 690735892932222976 | NaN | NaN | 2016-01-23 03:20:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Peaches. She's a Dingleberry Zand... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690735892... | 13 | 10 | Peaches | None | None | None | None |
| 1520 | 690728923253055490 | NaN | NaN | 2016-01-23 02:53:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Vinscent. He was just questioned about... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690728923... | 8 | 10 | Vinscent | None | None | None | None |
| 1521 | 690690673629138944 | NaN | NaN | 2016-01-23 00:21:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cedrick. He's a spookster. Did me a di... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690690673... | 10 | 10 | Cedrick | None | None | None | None |
| 1522 | 690649993829576704 | NaN | NaN | 2016-01-22 21:39:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hazel. She's a gymnast. Training hard ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690649993... | 11 | 10 | Hazel | None | None | None | None |
| 1523 | 690607260360429569 | 6.903413e+17 | 4.670367e+08 | 2016-01-22 18:49:36 +0000 | <a href="http://twitter.com/download/iphone" r... | 12/10 @LightningHoltt | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 1524 | 690597161306841088 | NaN | NaN | 2016-01-22 18:09:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lolo. She's America af. Behind in scie... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690597161... | 11 | 10 | Lolo | None | None | None | None |
| 1525 | 690400367696297985 | NaN | NaN | 2016-01-22 05:07:29 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Eriq. His friend just reminded him of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690400367... | 10 | 10 | Eriq | None | None | None | None |
| 1526 | 690374419777196032 | NaN | NaN | 2016-01-22 03:24:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phred. He's an Albanian Flepperkush. T... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690374419... | 11 | 10 | Phred | None | None | None | None |
| 1527 | 690360449368465409 | NaN | NaN | 2016-01-22 02:28:52 +0000 | <a href="http://twitter.com/download/iphone" r... | Stop sending in lobsters. This is the final wa... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690360449... | 9 | 10 | the | None | None | None | None |
| 1528 | 690348396616552449 | NaN | NaN | 2016-01-22 01:40:58 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Oddie. He's trying to communicate. 12/... | NaN | NaN | NaN | https://vine.co/v/iejBWerY9X2 | 12 | 10 | Oddie | None | None | None | None |
| 1529 | 690248561355657216 | NaN | NaN | 2016-01-21 19:04:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maxwell. That's his moped. He rents it... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690248561... | 11 | 10 | Maxwell | None | None | None | None |
| 1530 | 690021994562220032 | NaN | NaN | 2016-01-21 04:03:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Geoff (pronounced "Kyle"). He acc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690021994... | 10 | 10 | Geoff | None | None | None | None |
| 1531 | 690015576308211712 | NaN | NaN | 2016-01-21 03:38:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper can only sleep on shoes. It's a cr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690015576... | 12 | 10 | None | None | None | pupper | None |
| 1532 | 690005060500217858 | NaN | NaN | 2016-01-21 02:56:40 +0000 | <a href="http://twitter.com/download/iphone" r... | "I'm the only one that ever does anything in t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/690005060... | 10 | 10 | None | None | None | None | None |
| 1533 | 689999384604450816 | NaN | NaN | 2016-01-21 02:34:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Covach. He's trying to melt the snow. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689999384... | 10 | 10 | Covach | None | None | None | None |
| 1534 | 689993469801164801 | NaN | NaN | 2016-01-21 02:10:37 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here we are witnessing a rare High Stepping Al... | NaN | NaN | NaN | https://vine.co/v/ienexVMZgi5 | 12 | 10 | None | None | floofer | None | None |
| 1535 | 689977555533848577 | NaN | NaN | 2016-01-21 01:07:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Wednesday here's a pup wearing a beret. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689977555... | 12 | 10 | None | None | None | None | None |
| 1536 | 689905486972461056 | NaN | NaN | 2016-01-20 20:21:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Gizmo. He's quite the pupper. Con... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689905486... | 11 | 10 | Gizmo | None | None | pupper | None |
| 1537 | 689877686181715968 | NaN | NaN | 2016-01-20 18:30:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Durg. He's trying to conquer his fear ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689877686... | 9 | 10 | Durg | None | None | None | None |
| 1538 | 689835978131935233 | NaN | NaN | 2016-01-20 15:44:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Fynn & Taco. Fynn is an all-powerful ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689835978... | 11 | 10 | Fynn | None | None | None | None |
| 1539 | 689661964914655233 | NaN | NaN | 2016-01-20 04:13:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Luca. He's a Butternut Scooperfloof. Glor... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689661964... | 12 | 10 | Luca | None | None | None | None |
| 1540 | 689659372465688576 | NaN | NaN | 2016-01-20 04:03:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ricky. He's being escorted out of the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689659372... | 8 | 10 | Ricky | None | None | None | None |
| 1541 | 689623661272240129 | NaN | NaN | 2016-01-20 01:41:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She's terrified of the stuffed b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689623661... | 10 | 10 | Lucy | None | None | pupper | None |
| 1542 | 689599056876867584 | NaN | NaN | 2016-01-20 00:03:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see 33 dogs posing for a picture. All ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689599056... | 11 | 10 | None | None | None | None | None |
| 1543 | 689557536375177216 | NaN | NaN | 2016-01-19 21:18:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Downright majestic af 12/10 https://t.co/WFh2F... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689557536... | 12 | 10 | None | None | None | None | None |
| 1544 | 689517482558820352 | NaN | NaN | 2016-01-19 18:39:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Carl. He just wants to make sure you'r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689517482... | 12 | 10 | Carl | None | None | None | None |
| 1545 | 689289219123089408 | NaN | NaN | 2016-01-19 03:32:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Someone sent me this without any context and e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689289219... | 13 | 10 | None | None | None | None | None |
| 1546 | 689283819090870273 | NaN | NaN | 2016-01-19 03:10:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Chipson. He's aerodynamic af. No ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689283819... | 9 | 10 | Chipson | None | None | None | None |
| 1547 | 689280876073582592 | NaN | NaN | 2016-01-19 02:59:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Herald. He wants you to know he could ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689280876... | 10 | 10 | Herald | None | None | None | None |
| 1548 | 689275259254616065 | NaN | NaN | 2016-01-19 02:36:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lucky. He was showing his friends an extr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689275259... | 10 | 10 | Lucky | None | None | None | None |
| 1549 | 689255633275777024 | NaN | NaN | 2016-01-19 01:18:43 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Ferg. He swallowed a chainsaw. 1 like ... | NaN | NaN | NaN | https://vine.co/v/iOL792n5hz2 | 10 | 10 | Ferg | None | None | None | None |
| 1550 | 689154315265683456 | NaN | NaN | 2016-01-18 18:36:07 +0000 | <a href="http://twitter.com/download/iphone" r... | We normally don't rate birds but I feel bad co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689154315... | 9 | 10 | None | None | None | None | None |
| 1551 | 689143371370250240 | NaN | NaN | 2016-01-18 17:52:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Trip. He likes wearing costumes that aren... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/689143371... | 10 | 10 | Trip | None | None | pupper | None |
| 1552 | 688916208532455424 | NaN | NaN | 2016-01-18 02:49:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper just wants to say hello. 11/10 wou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688916208... | 11 | 10 | None | None | None | pupper | None |
| 1553 | 688908934925697024 | NaN | NaN | 2016-01-18 02:21:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Clarence. He does parkour. 8/10 very tale... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688908934... | 8 | 10 | Clarence | None | None | None | None |
| 1554 | 688898160958271489 | NaN | NaN | 2016-01-18 01:38:15 +0000 | <a href="http://twitter.com/download/iphone" r... | When you have a ton of work to do but then rem... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688898160... | 10 | 10 | None | None | None | None | None |
| 1555 | 688894073864884227 | NaN | NaN | 2016-01-18 01:22:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hamrick. He's covered in corn flakes. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688894073... | 7 | 10 | Hamrick | None | None | pupper | None |
| 1556 | 688828561667567616 | NaN | NaN | 2016-01-17 21:01:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Brad. His car probably has a spoi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688828561... | 9 | 10 | Brad | None | None | None | None |
| 1557 | 688804835492233216 | NaN | NaN | 2016-01-17 19:27:24 +0000 | <a href="http://twitter.com/download/iphone" r... | When you stumble but recover quickly cause you... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688804835... | 12 | 10 | None | None | None | None | None |
| 1558 | 688789766343622656 | NaN | NaN | 2016-01-17 18:27:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Pubert. He's a Kerplunk Rumplestilt. Cann... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688789766... | 8 | 10 | Pubert | None | None | None | None |
| 1559 | 688547210804498433 | NaN | NaN | 2016-01-17 02:23:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Frönq. He got caught stealing a waffle... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688547210... | 9 | 10 | Frönq | None | None | None | None |
| 1560 | 688519176466644993 | NaN | NaN | 2016-01-17 00:32:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper is sprouting a flower out of her h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688519176... | 12 | 10 | None | None | None | pupper | None |
| 1561 | 688385280030670848 | NaN | NaN | 2016-01-16 15:40:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louis. He's takes top-notch selfies. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688385280... | 12 | 10 | Louis | None | None | None | None |
| 1562 | 688211956440801280 | NaN | NaN | 2016-01-16 04:11:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Derby. He's a superstar. 13/10 (vid by... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688211956... | 13 | 10 | Derby | None | None | None | None |
| 1563 | 688179443353796608 | NaN | NaN | 2016-01-16 02:02:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lizzie. She's about to fist bump the l... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688179443... | 10 | 10 | Lizzie | None | None | pupper | None |
| 1564 | 688116655151435777 | NaN | NaN | 2016-01-15 21:52:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Please send dogs. I'm tired of seeing other st... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688116655... | 10 | 10 | None | None | None | None | None |
| 1565 | 688064179421470721 | NaN | NaN | 2016-01-15 18:24:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kilo. He's a Pouncing Brioche. Really ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/688064179... | 11 | 10 | Kilo | None | None | None | None |
| 1566 | 687841446767013888 | NaN | NaN | 2016-01-15 03:39:15 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | 13/10 I can't stop watching this (vid by @k8ly... | NaN | NaN | NaN | https://vine.co/v/iOWwUPH1hrw | 13 | 10 | None | None | None | None | None |
| 1567 | 687826841265172480 | NaN | NaN | 2016-01-15 02:41:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louis. He's a rollercoaster of emotion... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687826841... | 12 | 10 | Louis | None | None | None | None |
| 1568 | 687818504314159109 | NaN | NaN | 2016-01-15 02:08:05 +0000 | <a href="http://twitter.com/download/iphone" r... | With great pupper comes great responsibility. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687818504... | 12 | 10 | None | None | None | pupper | None |
| 1569 | 687807801670897665 | NaN | NaN | 2016-01-15 01:25:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Trooper & Maya. Trooper protects Maya... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687807801... | 11 | 10 | Trooper | None | None | None | None |
| 1570 | 687732144991551489 | NaN | NaN | 2016-01-14 20:24:55 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Ember. That's the q-tip she owes money... | NaN | NaN | NaN | https://vine.co/v/iOuMphL5DBY | 11 | 10 | Ember | None | None | None | None |
| 1571 | 687704180304273409 | NaN | NaN | 2016-01-14 18:33:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Blakely. He thinks that's a hat. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687704180... | 9 | 10 | Blakely | None | None | pupper | None |
| 1572 | 687664829264453632 | NaN | NaN | 2016-01-14 15:57:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Opal. He's a Belgian Dijon Poofster. Upse... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687664829... | 11 | 10 | Opal | None | None | None | None |
| 1573 | 687494652870668288 | NaN | NaN | 2016-01-14 04:41:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Marq. He stole this car. 7/10 wtf Marq... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687494652... | 7 | 10 | Marq | None | None | None | None |
| 1574 | 687480748861947905 | NaN | NaN | 2016-01-14 03:45:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Another magnificent photo. 12/10 https://t.co/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687480748... | 12 | 10 | None | None | None | None | None |
| 1575 | 687476254459715584 | NaN | NaN | 2016-01-14 03:28:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Curtis. He's a fluffball. 11/10 would ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687476254... | 11 | 10 | Curtis | None | None | pupper | None |
| 1576 | 687460506001633280 | NaN | NaN | 2016-01-14 02:25:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kramer. He's a Picasso Tortellini. Tie... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687460506... | 10 | 10 | Kramer | None | None | None | None |
| 1577 | 687399393394311168 | NaN | NaN | 2016-01-13 22:22:41 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Barry. He's very fast. I hope he finds... | NaN | NaN | NaN | https://vine.co/v/iM2hLu9LU5i | 10 | 10 | Barry | None | None | None | None |
| 1578 | 687317306314240000 | NaN | NaN | 2016-01-13 16:56:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tyrone. He's a leaf wizard. Self-motiv... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687317306... | 11 | 10 | Tyrone | None | None | None | None |
| 1579 | 687312378585812992 | NaN | NaN | 2016-01-13 16:36:55 +0000 | <a href="http://twitter.com/download/iphone" r... | "You got any games on your phone" 7/10 for inv... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687312378... | 7 | 10 | None | None | None | pupper | None |
| 1580 | 687127927494963200 | NaN | NaN | 2016-01-13 04:23:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Gordon. He's an asshole. 9/10 would still... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687127927... | 9 | 10 | Gordon | None | None | None | None |
| 1581 | 687124485711986689 | NaN | NaN | 2016-01-13 04:10:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Samson. He's a Firecracker Häagen... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687124485... | 11 | 10 | Samson | None | None | None | None |
| 1582 | 687109925361856513 | NaN | NaN | 2016-01-13 03:12:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Baxter. He looks like a fun dog. Prefe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687109925... | 11 | 10 | Baxter | None | None | None | None |
| 1583 | 687102708889812993 | NaN | NaN | 2016-01-13 02:43:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Army of water dogs here. None of them know whe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687102708... | 5 | 10 | None | None | None | None | None |
| 1584 | 687096057537363968 | NaN | NaN | 2016-01-13 02:17:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper's New Year's resolution was to bec... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/687096057... | 11 | 10 | None | None | None | pupper | None |
| 1585 | 686947101016735744 | NaN | NaN | 2016-01-12 16:25:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jackson. He was specifically told not ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686947101... | 11 | 10 | Jackson | None | None | None | None |
| 1586 | 686760001961103360 | NaN | NaN | 2016-01-12 04:01:58 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This pupper forgot how to walk. 12/10 happens ... | NaN | NaN | NaN | https://vine.co/v/iMvubwT260D | 12 | 10 | None | None | None | pupper | None |
| 1587 | 686749460672679938 | NaN | NaN | 2016-01-12 03:20:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Strange pup here. Easily manipulated. Rather i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686749460... | 8 | 10 | None | None | None | None | None |
| 1588 | 686730991906516992 | NaN | NaN | 2016-01-12 02:06:41 +0000 | <a href="http://twitter.com/download/iphone" r... | I just love this picture. 12/10 lovely af http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686730991... | 12 | 10 | None | None | None | None | None |
| 1589 | 686683045143953408 | NaN | NaN | 2016-01-11 22:56:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mona. She's a Yarborough Splishnsplash... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686683045... | 11 | 10 | Mona | None | None | pupper | None |
| 1590 | 686618349602762752 | NaN | NaN | 2016-01-11 18:39:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Olivia. She just saw an adult wearing ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686618349... | 11 | 10 | Olivia | None | None | pupper | None |
| 1591 | 686606069955735556 | NaN | NaN | 2016-01-11 17:50:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Horace. He was practicing his levitation,... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686606069... | 10 | 10 | Horace | None | None | None | None |
| 1592 | 686394059078897668 | NaN | NaN | 2016-01-11 03:47:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This pup's having a nightmare that he forgot t... | NaN | NaN | NaN | https://vine.co/v/iMqBebnOvav | 12 | 10 | None | None | None | None | None |
| 1593 | 686386521809772549 | NaN | NaN | 2016-01-11 03:17:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Crimson. He's a Speckled Winnebag... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686386521... | 11 | 10 | Crimson | None | None | None | None |
| 1594 | 686377065986265092 | NaN | NaN | 2016-01-11 02:40:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Birf. He thinks he's gone blind. 10/10 ve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686377065... | 10 | 10 | Birf | None | None | pupper | None |
| 1595 | 686358356425093120 | NaN | NaN | 2016-01-11 01:25:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Heartwarming scene here. Son reuniting w fathe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686358356... | 10 | 10 | None | None | None | None | None |
| 1596 | 686286779679375361 | NaN | NaN | 2016-01-10 20:41:33 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | When bae calls your name from across the room.... | NaN | NaN | NaN | https://vine.co/v/iMZx6aDbExn | 12 | 10 | None | None | None | None | None |
| 1597 | 686050296934563840 | NaN | NaN | 2016-01-10 05:01:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Flávio. He's a Macedonian Poppycock. 9... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686050296... | 11 | 10 | Flávio | None | None | None | None |
| 1598 | 686035780142297088 | 6.860340e+17 | 4.196984e+09 | 2016-01-10 04:04:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Yes I do realize a rating of 4/20 would've bee... | NaN | NaN | NaN | NaN | 4 | 20 | None | None | None | None | None |
| 1599 | 686034024800862208 | NaN | NaN | 2016-01-10 03:57:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Your fav crew is back and this time they're em... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686034024... | 12 | 10 | None | None | None | None | None |
| 1600 | 686007916130873345 | NaN | NaN | 2016-01-10 02:13:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper has a magical eye. 11/10 I can't s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686007916... | 11 | 10 | None | None | None | pupper | None |
| 1601 | 686003207160610816 | NaN | NaN | 2016-01-10 01:54:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hammond. He's a peculiar pup. Loves lo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/686003207... | 3 | 10 | Hammond | None | None | None | None |
| 1602 | 685973236358713344 | NaN | NaN | 2016-01-09 23:55:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lorelei. She's contemplating her exist... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685973236... | 11 | 10 | Lorelei | None | None | None | None |
| 1603 | 685943807276412928 | NaN | NaN | 2016-01-09 21:58:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is the newly formed pupper a capella grou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685943807... | 8 | 10 | the | None | None | pupper | None |
| 1604 | 685906723014619143 | NaN | NaN | 2016-01-09 19:31:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Olive. He's stuck in a sleeve. 9/10 da... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685906723... | 9 | 10 | Olive | None | None | None | None |
| 1605 | 685681090388975616 | 6.855479e+17 | 4.196984e+09 | 2016-01-09 04:34:45 +0000 | <a href="http://twitter.com/download/iphone" r... | Jack deserves another round of applause. If yo... | NaN | NaN | NaN | NaN | 14 | 10 | None | None | None | None | None |
| 1606 | 685667379192414208 | NaN | NaN | 2016-01-09 03:40:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Marty. He has no idea what happened he... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685667379... | 9 | 10 | Marty | None | None | pupper | None |
| 1607 | 685663452032069632 | NaN | NaN | 2016-01-09 03:24:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Brooks. He's confused by the almighty bal... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685663452... | 12 | 10 | Brooks | None | None | None | None |
| 1608 | 685641971164143616 | NaN | NaN | 2016-01-09 01:59:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Otis. He just passed a cop while going... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685641971... | 7 | 10 | Otis | None | None | pupper | None |
| 1609 | 685547936038666240 | NaN | NaN | 2016-01-08 19:45:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Everybody needs to read this. Jack is our firs... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685547936... | 14 | 10 | None | None | None | pupper | None |
| 1610 | 685532292383666176 | NaN | NaN | 2016-01-08 18:43:29 +0000 | <a href="http://twitter.com/download/iphone" r... | For the last time, WE. DO. NOT. RATE. BULBASAU... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685532292... | 9 | 10 | None | None | None | None | None |
| 1611 | 685325112850124800 | NaN | NaN | 2016-01-08 05:00:14 +0000 | <a href="http://twitter.com/download/iphone" r... | "Tristan do not speak to me with that kind of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685325112... | 10 | 10 | None | None | None | None | None |
| 1612 | 685321586178670592 | NaN | NaN | 2016-01-08 04:46:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rocky. He sleeps like a psychopath. 10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685321586... | 10 | 10 | Rocky | None | None | None | None |
| 1613 | 685315239903100929 | NaN | NaN | 2016-01-08 04:21:00 +0000 | <a href="http://twitter.com/download/iphone" r... | I would like everyone to appreciate this pup's... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685315239... | 11 | 10 | None | None | None | None | None |
| 1614 | 685307451701334016 | NaN | NaN | 2016-01-08 03:50:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Petrick. He's an Altostratus Floo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685307451... | 11 | 10 | Petrick | None | floofer | None | None |
| 1615 | 685268753634967552 | NaN | NaN | 2016-01-08 01:16:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hubertson. He's a Carmel Haberdashery.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685268753... | 10 | 10 | Hubertson | None | None | pupper | None |
| 1616 | 685198997565345792 | NaN | NaN | 2016-01-07 20:39:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alfie. That is his time machine. He's ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685198997... | 11 | 10 | Alfie | None | None | None | None |
| 1617 | 685169283572338688 | NaN | NaN | 2016-01-07 18:41:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Gerbald. He just found out he's adopted. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/685169283... | 11 | 10 | Gerbald | None | None | pupper | None |
| 1618 | 684969860808454144 | 6.849598e+17 | 4.196984e+09 | 2016-01-07 05:28:35 +0000 | <a href="http://twitter.com/download/iphone" r... | For those who claim this is a goat, u are wron... | NaN | NaN | NaN | NaN | 5 | 10 | None | None | None | None | None |
| 1619 | 684959798585110529 | NaN | NaN | 2016-01-07 04:48:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jerry. He's a neat dog. No legs (tragi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684959798... | 5 | 10 | Jerry | None | None | None | None |
| 1620 | 684940049151070208 | NaN | NaN | 2016-01-07 03:30:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oreo. She's a photographer and a model... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684940049... | 12 | 10 | Oreo | None | None | None | None |
| 1621 | 684926975086034944 | NaN | NaN | 2016-01-07 02:38:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Bruiser & Charlie. They are the best ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684926975... | 11 | 10 | Bruiser | None | None | None | None |
| 1622 | 684914660081053696 | NaN | NaN | 2016-01-07 01:49:14 +0000 | <a href="http://twitter.com/download/iphone" r... | "Hello yes I'll just get one of each color tha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684914660... | 12 | 10 | None | None | None | None | None |
| 1623 | 684902183876321280 | NaN | NaN | 2016-01-07 00:59:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Perry. He's an Augustus Gloopster. Ver... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684902183... | 11 | 10 | Perry | None | None | None | None |
| 1624 | 684880619965411328 | NaN | NaN | 2016-01-06 23:33:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a basking dino pupper. Looks powe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684880619... | 5 | 10 | None | None | None | pupper | None |
| 1625 | 684830982659280897 | NaN | NaN | 2016-01-06 20:16:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This little fella really hates stairs. Prefers... | NaN | NaN | NaN | https://vine.co/v/eEZXZI1rqxX | 13 | 10 | None | None | None | pupper | None |
| 1626 | 684800227459624960 | NaN | NaN | 2016-01-06 18:14:31 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Theodore. He's dapper as hell. Probably o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684800227... | 11 | 10 | Theodore | None | None | None | None |
| 1627 | 684594889858887680 | NaN | NaN | 2016-01-06 04:38:35 +0000 | <a href="http://twitter.com/download/iphone" r... | "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684594889... | 10 | 10 | None | None | None | None | None |
| 1628 | 684588130326986752 | NaN | NaN | 2016-01-06 04:11:43 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This pupper just got his first kiss. 12/10 he'... | NaN | NaN | NaN | https://vine.co/v/ihWIxntjtO7 | 12 | 10 | None | None | None | pupper | None |
| 1629 | 684567543613382656 | NaN | NaN | 2016-01-06 02:49:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bobby. He doesn't give a damn about pe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684567543... | 4 | 10 | Bobby | None | None | None | None |
| 1630 | 684538444857667585 | 6.844811e+17 | 4.196984e+09 | 2016-01-06 00:54:18 +0000 | <a href="http://twitter.com/download/iphone" r... | After watching this video, we've determined th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684538444... | 12 | 10 | None | None | None | None | None |
| 1631 | 684481074559381504 | NaN | NaN | 2016-01-05 21:06:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Pippa. She's an Elfin High Feta. Compact ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684481074... | 10 | 10 | Pippa | None | None | None | None |
| 1632 | 684460069371654144 | NaN | NaN | 2016-01-05 19:42:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeph. He's a Western Sagittarius Dookm... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684460069... | 10 | 10 | Jeph | None | None | None | None |
| 1633 | 684241637099323392 | NaN | NaN | 2016-01-05 05:14:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Obi. He got camera shy. 12/10 https://... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684241637... | 12 | 10 | Obi | None | None | None | None |
| 1634 | 684225744407494656 | 6.842229e+17 | 4.196984e+09 | 2016-01-05 04:11:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Two sneaky puppers were not initially seen, mo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684225744... | 143 | 130 | None | None | None | None | None |
| 1635 | 684222868335505415 | NaN | NaN | 2016-01-05 04:00:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Someone help the girl is being mugged. Several... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684222868... | 121 | 110 | None | None | None | None | None |
| 1636 | 684200372118904832 | NaN | NaN | 2016-01-05 02:30:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Gang of fearless hoofed puppers here. Straight... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684200372... | 6 | 10 | None | None | None | None | None |
| 1637 | 684195085588783105 | NaN | NaN | 2016-01-05 02:09:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tino. He really likes corndogs. 9/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684195085... | 9 | 10 | Tino | None | None | None | None |
| 1638 | 684188786104872960 | NaN | NaN | 2016-01-05 01:44:52 +0000 | <a href="http://twitter.com/download/iphone" r... | "Yo Boomer I'm taking a selfie, grab your stic... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684188786... | 10 | 10 | None | None | None | None | None |
| 1639 | 684177701129875456 | NaN | NaN | 2016-01-05 01:00:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kulet. She's very proud of the flower ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684177701... | 10 | 10 | Kulet | None | None | None | None |
| 1640 | 684147889187209216 | NaN | NaN | 2016-01-04 23:02:22 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Sweets the English Bulldog. Waves back... | NaN | NaN | NaN | https://vine.co/v/ib2nTOEuuOI | 12 | 10 | Sweets | None | None | pupper | None |
| 1641 | 684122891630342144 | NaN | NaN | 2016-01-04 21:23:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Heartwarming scene of two pups that want nothi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684122891... | 11 | 10 | None | None | None | None | None |
| 1642 | 684097758874210310 | NaN | NaN | 2016-01-04 19:43:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Lupe. This is how she sleeps. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/684097758... | 10 | 10 | Lupe | None | None | None | None |
| 1643 | 683857920510050305 | NaN | NaN | 2016-01-04 03:50:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sadie. She fell asleep on the beach and h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683857920... | 10 | 10 | Sadie | None | None | None | None |
| 1644 | 683852578183077888 | NaN | NaN | 2016-01-04 03:28:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Tiger. He's a penbroke (little do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683852578... | 10 | 10 | Tiger | None | None | None | None |
| 1645 | 683849932751646720 | NaN | NaN | 2016-01-04 03:18:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jiminy. He's not the brightest dog. Ne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683849932... | 5 | 10 | Jiminy | None | None | None | None |
| 1646 | 683834909291606017 | NaN | NaN | 2016-01-04 02:18:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see a faulty pupper. Might need to rep... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683834909... | 9 | 10 | None | None | None | pupper | None |
| 1647 | 683828599284170753 | NaN | NaN | 2016-01-04 01:53:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Breathtaking pupper here. Should be on the cov... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683828599... | 12 | 10 | None | None | None | pupper | None |
| 1648 | 683773439333797890 | NaN | NaN | 2016-01-03 22:14:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Buddy. He's gaining strength. Currentl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683773439... | 9 | 10 | Buddy | None | None | None | None |
| 1649 | 683742671509258241 | NaN | NaN | 2016-01-03 20:12:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sebastian. He's a womanizer. Romantic af.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683742671... | 11 | 10 | Sebastian | None | None | None | None |
| 1650 | 683515932363329536 | NaN | NaN | 2016-01-03 05:11:12 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT... | NaN | NaN | NaN | https://vine.co/v/ibvnzrauFuV | 11 | 10 | None | None | None | None | None |
| 1651 | 683498322573824003 | NaN | NaN | 2016-01-03 04:01:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Griffin. He's desperate for both a phy... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683498322... | 11 | 10 | Griffin | None | None | None | None |
| 1652 | 683481228088049664 | NaN | NaN | 2016-01-03 02:53:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Banjo. He's a Peppercorn Shoop Da Whoop. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683481228... | 11 | 10 | Banjo | None | None | pupper | None |
| 1653 | 683462770029932544 | NaN | NaN | 2016-01-03 01:39:57 +0000 | <a href="http://twitter.com/download/iphone" r... | "Hello forest pupper I am house pupper welcome... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683462770... | 8 | 10 | None | None | None | pupper | None |
| 1654 | 683449695444799489 | NaN | NaN | 2016-01-03 00:47:59 +0000 | <a href="http://twitter.com/download/iphone" r... | I just want to be friends with this dog. Appea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683449695... | 10 | 10 | None | None | None | None | None |
| 1655 | 683391852557561860 | NaN | NaN | 2016-01-02 20:58:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Jack (pronounced "Kevin"). He's a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683391852... | 11 | 10 | Jack | None | None | None | None |
| 1656 | 683357973142474752 | NaN | NaN | 2016-01-02 18:43:31 +0000 | <a href="http://twitter.com/download/iphone" r... | "Have a seat, son. There are some things we ne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683357973... | 10 | 10 | None | None | None | None | None |
| 1657 | 683142553609318400 | NaN | NaN | 2016-01-02 04:27:31 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Brandy. She's a member of the Bloods. Men... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683142553... | 9 | 10 | Brandy | None | None | pupper | None |
| 1658 | 683111407806746624 | NaN | NaN | 2016-01-02 02:23:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Larry. He thought the New Year's parti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683111407... | 10 | 10 | Larry | None | None | pupper | None |
| 1659 | 683098815881154561 | NaN | NaN | 2016-01-02 01:33:43 +0000 | <a href="http://twitter.com/download/iphone" r... | aahhhhkslaldhwnxmzbbs 12/10 for being da smoos... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683098815... | 12 | 10 | None | None | None | None | None |
| 1660 | 683078886620553216 | NaN | NaN | 2016-01-02 00:14:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see a nifty leaping pupper. Feet look ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683078886... | 9 | 10 | None | None | None | pupper | None |
| 1661 | 683030066213818368 | NaN | NaN | 2016-01-01 21:00:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lulu. She's contemplating all her unre... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/683030066... | 10 | 10 | Lulu | None | None | None | None |
| 1662 | 682962037429899265 | NaN | NaN | 2016-01-01 16:30:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Darrel. He just robbed a 7/11 and is i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682962037... | 7 | 11 | Darrel | None | None | None | None |
| 1663 | 682808988178739200 | 6.827884e+17 | 4.196984e+09 | 2016-01-01 06:22:03 +0000 | <a href="http://twitter.com/download/iphone" r... | I'm aware that I could've said 20/16, but here... | NaN | NaN | NaN | NaN | 20 | 16 | None | None | None | None | None |
| 1664 | 682788441537560576 | NaN | NaN | 2016-01-01 05:00:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy New Year from your fav holiday squad! 🎉 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682788441... | 12 | 10 | None | None | None | pupper | None |
| 1665 | 682750546109968385 | NaN | NaN | 2016-01-01 02:29:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Taco. He's a speckled Garnier Fructis. Lo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682750546... | 9 | 10 | Taco | None | None | None | None |
| 1666 | 682697186228989953 | NaN | NaN | 2015-12-31 22:57:47 +0000 | <a href="http://twitter.com/download/iphone" r... | NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 ht... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682697186... | 12 | 10 | None | None | None | None | None |
| 1667 | 682662431982772225 | NaN | NaN | 2015-12-31 20:39:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Joey and Izzy. Joey only has one ear that... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682662431... | 11 | 10 | Joey | None | None | None | None |
| 1668 | 682638830361513985 | NaN | NaN | 2015-12-31 19:05:54 +0000 | <a href="http://twitter.com/download/iphone" r... | I have no words. Just a magnificent pup. 12/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682638830... | 12 | 10 | None | None | None | None | None |
| 1669 | 682429480204398592 | NaN | NaN | 2015-12-31 05:14:01 +0000 | <a href="http://twitter.com/download/iphone" r... | I know we joke around on here, but this is get... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682429480... | 8 | 10 | None | None | None | None | None |
| 1670 | 682406705142087680 | NaN | NaN | 2015-12-31 03:43:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Patrick. He's a bigass pupper. 7/10 ht... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682406705... | 7 | 10 | Patrick | None | None | pupper | None |
| 1671 | 682393905736888321 | NaN | NaN | 2015-12-31 02:52:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kreg. He's riding an invisible jet ski... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682393905... | 11 | 10 | Kreg | None | None | None | None |
| 1672 | 682389078323662849 | NaN | NaN | 2015-12-31 02:33:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Brody. He's a Downton Abbey Falsetto. Add... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682389078... | 9 | 10 | Brody | None | None | None | None |
| 1673 | 682303737705140231 | NaN | NaN | 2015-12-30 20:54:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Todo. He's screaming because he doesn'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682303737... | 9 | 10 | Todo | None | None | None | None |
| 1674 | 682259524040966145 | NaN | NaN | 2015-12-30 17:58:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jax. He's an Iglesias Hufflepoof. Quite t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682259524... | 9 | 10 | Jax | None | None | None | None |
| 1675 | 682242692827447297 | NaN | NaN | 2015-12-30 16:51:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Samson. He patrols his waters on the b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682242692... | 11 | 10 | Samson | None | None | None | None |
| 1676 | 682088079302213632 | NaN | NaN | 2015-12-30 06:37:25 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | I'm not sure what this dog is doing but it's p... | NaN | NaN | NaN | https://vine.co/v/iqMjlxULzbn | 12 | 10 | None | None | None | None | None |
| 1677 | 682059653698686977 | NaN | NaN | 2015-12-30 04:44:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tess. Her main passions are shelves an... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682059653... | 11 | 10 | Tess | None | None | None | None |
| 1678 | 682047327939461121 | NaN | NaN | 2015-12-30 03:55:29 +0000 | <a href="http://twitter.com/download/iphone" r... | We normally don't rate bears but this one seem... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682047327... | 10 | 10 | None | None | None | None | None |
| 1679 | 682032003584274432 | NaN | NaN | 2015-12-30 02:54:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ulysses. He likes holding hands and hi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682032003... | 11 | 10 | Ulysses | None | None | None | None |
| 1680 | 682003177596559360 | NaN | NaN | 2015-12-30 01:00:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Unique dog here. Wrinkly as hell. Weird segmen... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/682003177... | 5 | 10 | None | None | None | None | None |
| 1681 | 681981167097122816 | NaN | NaN | 2015-12-29 23:32:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jimothy. He's a Trinidad Poliwhirl. Fa... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681981167... | 12 | 10 | Jimothy | None | None | None | None |
| 1682 | 681891461017812993 | NaN | NaN | 2015-12-29 17:36:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Charlie. He's scholarly af. Quite... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681891461... | 10 | 10 | Charlie | None | None | pupper | None |
| 1683 | 681694085539872773 | NaN | NaN | 2015-12-29 04:31:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bo. He's a Benedoop Cumbersnatch. Seem... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681694085... | 11 | 10 | Bo | None | None | pupper | None |
| 1684 | 681679526984871937 | NaN | NaN | 2015-12-29 03:33:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Can you spot Toby the guilty pupper? 7/10 woul... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681679526... | 7 | 10 | None | None | None | pupper | None |
| 1685 | 681654059175129088 | NaN | NaN | 2015-12-29 01:52:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Toffee. He's a happy pupper. Appears d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681654059... | 12 | 10 | Toffee | None | None | pupper | None |
| 1686 | 681610798867845120 | NaN | NaN | 2015-12-28 23:00:52 +0000 | <a href="http://twitter.com/download/iphone" r... | *collapses* 12/10 https://t.co/C7M8mnzHIK | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681610798... | 12 | 10 | None | None | None | None | None |
| 1687 | 681579835668455424 | NaN | NaN | 2015-12-28 20:57:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Apollo. He thought you weren't coming ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681579835... | 8 | 10 | Apollo | None | None | None | None |
| 1688 | 681523177663676416 | NaN | NaN | 2015-12-28 17:12:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Carly. She's actually 2 dogs fused tog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681523177... | 12 | 10 | Carly | None | None | None | None |
| 1689 | 681340665377193984 | 6.813394e+17 | 4.196984e+09 | 2015-12-28 05:07:27 +0000 | <a href="http://twitter.com/download/iphone" r... | I've been told there's a slight possibility he... | NaN | NaN | NaN | NaN | 5 | 10 | None | None | None | None | None |
| 1690 | 681339448655802368 | NaN | NaN | 2015-12-28 05:02:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Asher. He's not wearing a seatbelt or ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681339448... | 9 | 10 | Asher | None | None | None | None |
| 1691 | 681320187870711809 | NaN | NaN | 2015-12-28 03:46:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Glacier. He's a very happy pup. Loves ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681320187... | 11 | 10 | Glacier | None | None | None | None |
| 1692 | 681302363064414209 | NaN | NaN | 2015-12-28 02:35:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chuck. He's a neat dog. Very flexible.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681302363... | 3 | 10 | Chuck | None | None | None | None |
| 1693 | 681297372102656000 | NaN | NaN | 2015-12-28 02:15:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is actually a lion. We only rate dogs. Fo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681297372... | 12 | 10 | actually | None | None | None | None |
| 1694 | 681281657291280384 | NaN | NaN | 2015-12-28 01:12:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sarge. His parents signed him up for danc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681281657... | 11 | 10 | Sarge | None | None | None | None |
| 1695 | 681261549936340994 | NaN | NaN | 2015-12-27 23:53:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Panda. He's a Quackadilly Shooste... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681261549... | 9 | 10 | Panda | None | None | None | None |
| 1696 | 681242418453299201 | NaN | NaN | 2015-12-27 22:37:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Champ. He's being sacrificed to the Az... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681242418... | 10 | 10 | Champ | None | None | None | None |
| 1697 | 681231109724700672 | NaN | NaN | 2015-12-27 21:52:07 +0000 | <a href="http://twitter.com/download/iphone" r... | I just love this pic. 11/10 this pupper is goi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681231109... | 11 | 10 | None | None | None | pupper | None |
| 1698 | 681193455364796417 | NaN | NaN | 2015-12-27 19:22:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Aspen. He's astronomically fluffy. I w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/681193455... | 11 | 10 | Aspen | None | None | None | None |
| 1699 | 680970795137544192 | NaN | NaN | 2015-12-27 04:37:44 +0000 | <a href="http://twitter.com/download/iphone" r... | I thought I made this very clear. We only rate... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680970795... | 9 | 10 | None | None | None | None | None |
| 1700 | 680959110691590145 | NaN | NaN | 2015-12-27 03:51:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ozzie. He was doing fine until he lost... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680959110... | 9 | 10 | Ozzie | None | None | None | None |
| 1701 | 680940246314430465 | NaN | NaN | 2015-12-27 02:36:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alice. She's an idiot. 4/10 https://t.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680940246... | 4 | 10 | Alice | None | None | None | None |
| 1702 | 680934982542561280 | NaN | NaN | 2015-12-27 02:15:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Sadie. She's a Tortellini Sidewin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680934982... | 10 | 10 | Sadie | None | None | None | None |
| 1703 | 680913438424612864 | NaN | NaN | 2015-12-27 00:49:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Griswold. He's dapper as hell. Already pu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680913438... | 11 | 10 | Griswold | None | None | None | None |
| 1704 | 680889648562991104 | NaN | NaN | 2015-12-26 23:15:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cheesy. It's her birthday. She's patie... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680889648... | 9 | 10 | Cheesy | None | None | None | None |
| 1705 | 680836378243002368 | NaN | NaN | 2015-12-26 19:43:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ellie. She's secretly ferocious. 12/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680836378... | 12 | 10 | Ellie | None | None | pupper | None |
| 1706 | 680805554198020098 | NaN | NaN | 2015-12-26 17:41:07 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This guy's dog broke. So sad. 9/10 would still... | NaN | NaN | NaN | https://vine.co/v/iAP0Ugzi2PO | 9 | 10 | None | None | None | None | None |
| 1707 | 680801747103793152 | NaN | NaN | 2015-12-26 17:25:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Great picture here. Dog on the right panicked ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680801747... | 10 | 10 | None | None | None | None | None |
| 1708 | 680798457301471234 | NaN | NaN | 2015-12-26 17:12:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Moofasa. He must be a powerful do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680798457... | 6 | 10 | Moofasa | None | None | None | None |
| 1709 | 680609293079592961 | NaN | NaN | 2015-12-26 04:41:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brody. That is his chair. He loves his... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680609293... | 9 | 10 | Brody | None | None | None | None |
| 1710 | 680583894916304897 | NaN | NaN | 2015-12-26 03:00:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. Her tennis ball slowly rolled d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680583894... | 8 | 10 | Penny | None | None | None | None |
| 1711 | 680497766108381184 | NaN | NaN | 2015-12-25 21:18:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Percy. He's a Latvian Yuletide Heineken. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680497766... | 12 | 10 | Percy | None | None | None | None |
| 1712 | 680494726643068929 | NaN | NaN | 2015-12-25 21:06:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have uncovered an entire battalion of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680494726... | 26 | 10 | None | None | None | None | None |
| 1713 | 680473011644985345 | NaN | NaN | 2015-12-25 19:39:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hector. He thinks he's a hammer. Silly... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680473011... | 10 | 10 | Hector | None | None | pupper | None |
| 1714 | 680440374763077632 | NaN | NaN | 2015-12-25 17:30:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Merry Christmas. My gift to you is this tiny u... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680440374... | 11 | 10 | None | None | None | None | None |
| 1715 | 680221482581123072 | NaN | NaN | 2015-12-25 03:00:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is CeCe. She's patiently waiting for Sant... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680221482... | 10 | 10 | CeCe | None | None | None | None |
| 1716 | 680206703334408192 | NaN | NaN | 2015-12-25 02:01:30 +0000 | <a href="http://twitter.com/download/iphone" r... | I hope everyone enjoys this picture as much as... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680206703... | 12 | 10 | Toby | None | None | None | None |
| 1717 | 680191257256136705 | NaN | NaN | 2015-12-25 01:00:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a sleepy Christmas pupper 11/10 https:/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680191257... | 11 | 10 | None | None | None | pupper | None |
| 1718 | 680176173301628928 | NaN | NaN | 2015-12-25 00:00:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper is patiently waiting to scare the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680176173... | 10 | 10 | None | None | None | pupper | None |
| 1719 | 680161097740095489 | NaN | NaN | 2015-12-24 23:00:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Goliath. He's an example of irony. Head i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680161097... | 12 | 10 | Goliath | None | None | None | None |
| 1720 | 680145970311643136 | NaN | NaN | 2015-12-24 22:00:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Kawhi. He was doing fine until hi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680145970... | 10 | 10 | Kawhi | None | None | pupper | None |
| 1721 | 680130881361686529 | NaN | NaN | 2015-12-24 21:00:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reggie. His Santa hat is a little big.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680130881... | 10 | 10 | Reggie | None | None | None | None |
| 1722 | 680115823365742593 | NaN | NaN | 2015-12-24 20:00:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ozzy. He woke up 2 minutes before he h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680115823... | 9 | 10 | Ozzy | None | None | None | None |
| 1723 | 680100725817409536 | NaN | NaN | 2015-12-24 19:00:23 +0000 | <a href="https://about.twitter.com/products/tw... | This pupper is not coming inside until she cat... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680100725... | 11 | 10 | None | None | None | pupper | None |
| 1724 | 680085611152338944 | NaN | NaN | 2015-12-24 18:00:19 +0000 | <a href="https://about.twitter.com/products/tw... | This is by far the most coordinated series of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680085611... | 12 | 10 | by | None | None | None | None |
| 1725 | 680070545539371008 | NaN | NaN | 2015-12-24 17:00:27 +0000 | <a href="https://about.twitter.com/products/tw... | Say hello to Emmie. She's trapped in an orname... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680070545... | 9 | 10 | Emmie | None | None | None | None |
| 1726 | 680055455951884288 | NaN | NaN | 2015-12-24 16:00:30 +0000 | <a href="https://about.twitter.com/products/tw... | Meet Sammy. At first I was like "that's a snow... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/680055455... | 10 | 10 | Sammy | None | None | None | None |
| 1727 | 679877062409191424 | NaN | NaN | 2015-12-24 04:11:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Penelope. She's a bacon frise. Total babe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679877062... | 5 | 10 | Penelope | None | None | None | None |
| 1728 | 679872969355714560 | NaN | NaN | 2015-12-24 03:55:21 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Rocco. He's in a very intense game of ... | NaN | NaN | NaN | https://vine.co/v/iAAxTbj1UAM | 10 | 10 | Rocco | None | None | None | None |
| 1729 | 679862121895714818 | NaN | NaN | 2015-12-24 03:12:15 +0000 | <a href="http://twitter.com/download/iphone" r... | "Dammit hooman I'm jus trynna lik the fler" 11... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679862121... | 11 | 10 | None | None | None | None | None |
| 1730 | 679854723806179328 | NaN | NaN | 2015-12-24 02:42:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bruce. He's a rare pup. Covered in Fro... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679854723... | 7 | 10 | Bruce | None | None | None | None |
| 1731 | 679844490799091713 | NaN | NaN | 2015-12-24 02:02:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Willie. He's floating away and needs y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679844490... | 10 | 10 | Willie | None | None | None | None |
| 1732 | 679828447187857408 | NaN | NaN | 2015-12-24 00:58:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Everybody look at this beautiful pupper 13/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679828447... | 13 | 10 | None | None | None | pupper | None |
| 1733 | 679777920601223168 | NaN | NaN | 2015-12-23 21:37:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rinna. She's melting. 10/10 get inside... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679777920... | 10 | 10 | Rinna | None | None | pupper | None |
| 1734 | 679736210798047232 | NaN | NaN | 2015-12-23 18:51:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This pup's name is Sabertooth (parents must be... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679736210... | 9 | 10 | None | None | None | None | None |
| 1735 | 679729593985699840 | NaN | NaN | 2015-12-23 18:25:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Hunter. He was playing with his ball m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679729593... | 8 | 10 | Hunter | None | None | None | None |
| 1736 | 679722016581222400 | NaN | NaN | 2015-12-23 17:55:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mike. He is a Jordanian Frito Pilates.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679722016... | 8 | 10 | Mike | None | None | None | None |
| 1737 | 679530280114372609 | NaN | NaN | 2015-12-23 05:13:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys this really needs to stop. We've been ove... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679530280... | 7 | 10 | a | None | None | None | None |
| 1738 | 679527802031484928 | NaN | NaN | 2015-12-23 05:03:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This little pupper just arrived. 11/10 would s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679527802... | 11 | 10 | None | None | None | pupper | None |
| 1739 | 679511351870550016 | NaN | NaN | 2015-12-23 03:58:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to William. He makes fun of others b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679511351... | 7 | 10 | William | None | None | None | None |
| 1740 | 679503373272485890 | NaN | NaN | 2015-12-23 03:26:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dwight. He's a pointy pupper. Very doc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679503373... | 8 | 10 | Dwight | None | None | pupper | None |
| 1741 | 679475951516934144 | NaN | NaN | 2015-12-23 01:37:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Evy. She doesn't want to be a Koala. 9... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679475951... | 9 | 10 | Evy | None | None | None | None |
| 1742 | 679462823135686656 | NaN | NaN | 2015-12-23 00:45:35 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Hurley. He's the curly one. He hugs every... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679462823... | 11 | 10 | Hurley | None | None | None | None |
| 1743 | 679405845277462528 | NaN | NaN | 2015-12-22 20:59:10 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Crazy unseen footage from Jurassic Park. 10/10... | NaN | NaN | NaN | https://vine.co/v/iKVFEigMLxP | 10 | 10 | None | None | None | None | None |
| 1744 | 679158373988876288 | NaN | NaN | 2015-12-22 04:35:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rubio. He has too much skin. 11/10 htt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679158373... | 11 | 10 | Rubio | None | None | None | None |
| 1745 | 679148763231985668 | NaN | NaN | 2015-12-22 03:57:37 +0000 | <a href="http://twitter.com/download/iphone" r... | I know everyone's excited for Christmas but th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679148763... | 8 | 10 | None | None | None | None | None |
| 1746 | 679132435750195208 | NaN | NaN | 2015-12-22 02:52:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louis. He's a river dancer. His friend... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679132435... | 10 | 10 | Louis | None | None | None | None |
| 1747 | 679111216690831360 | NaN | NaN | 2015-12-22 01:28:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is officially the greatest yawn of all ti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679111216... | 12 | 10 | officially | None | None | None | None |
| 1748 | 679062614270468097 | NaN | NaN | 2015-12-21 22:15:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chompsky. He lives up to his name. 11/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679062614... | 11 | 10 | Chompsky | None | None | None | None |
| 1749 | 679047485189439488 | NaN | NaN | 2015-12-21 21:15:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog doesn't know how to stairs. Quite tra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/679047485... | 9 | 10 | None | None | None | None | None |
| 1750 | 679001094530465792 | NaN | NaN | 2015-12-21 18:10:50 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Rascal. He's paddling an imaginary can... | NaN | NaN | NaN | https://vine.co/v/iKIwAzEatd6 | 11 | 10 | Rascal | None | None | None | None |
| 1751 | 678991772295516161 | NaN | NaN | 2015-12-21 17:33:48 +0000 | <a href="http://twitter.com/download/iphone" r... | If your Monday isn't going so well just take a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678991772... | 12 | 10 | None | None | None | None | None |
| 1752 | 678969228704284672 | NaN | NaN | 2015-12-21 16:04:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lola. She's a Metamorphic Chartreuse. Pla... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678969228... | 11 | 10 | Lola | None | None | None | None |
| 1753 | 678800283649069056 | NaN | NaN | 2015-12-21 04:52:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper with some mean tan lines. Snaz... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678800283... | 12 | 10 | None | None | None | pupper | None |
| 1754 | 678798276842360832 | NaN | NaN | 2015-12-21 04:44:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Linda. She fucking hates trees. 7/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678798276... | 7 | 10 | Linda | None | None | None | None |
| 1755 | 678774928607469569 | NaN | NaN | 2015-12-21 03:12:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tug. He's not required to wear the con... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678774928... | 11 | 10 | Tug | None | None | None | None |
| 1756 | 678767140346941444 | NaN | NaN | 2015-12-21 02:41:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mia. She makes awful decisions. 8/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678767140... | 8 | 10 | Mia | None | None | None | None |
| 1757 | 678764513869611008 | NaN | NaN | 2015-12-21 02:30:45 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Wilson. He got caught humping the futon. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678764513... | 10 | 10 | Wilson | None | None | None | None |
| 1758 | 678755239630127104 | NaN | NaN | 2015-12-21 01:53:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dash. He didn't think the water would ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678755239... | 10 | 10 | Dash | None | None | None | None |
| 1759 | 678740035362037760 | NaN | NaN | 2015-12-21 00:53:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Tango. He's a large dog. Doesn't care muc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678740035... | 6 | 10 | Tango | None | None | None | None |
| 1760 | 678708137298427904 | NaN | NaN | 2015-12-20 22:46:44 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here we are witnessing a wild field pupper. Lo... | NaN | NaN | NaN | https://vine.co/v/eQjxxYaQ60K | 10 | 10 | None | None | None | pupper | None |
| 1761 | 678675843183484930 | NaN | NaN | 2015-12-20 20:38:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Exotic pup here. Tail long af. Throat looks sw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678675843... | 2 | 10 | None | None | None | None | None |
| 1762 | 678643457146150913 | NaN | NaN | 2015-12-20 18:29:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Grizz. He just arrived. Couldn't wait unt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678643457... | 10 | 10 | Grizz | None | None | None | None |
| 1763 | 678446151570427904 | NaN | NaN | 2015-12-20 05:25:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Touching scene here. Really stirs up the emoti... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678446151... | 10 | 10 | None | None | None | None | None |
| 1764 | 678424312106393600 | NaN | NaN | 2015-12-20 03:58:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Crystal. She's a shitty fireman. No se... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678424312... | 2 | 10 | Crystal | None | None | None | None |
| 1765 | 678410210315247616 | NaN | NaN | 2015-12-20 03:02:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Jerome. He can shoot french fries... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678410210... | 10 | 10 | Jerome | None | None | None | None |
| 1766 | 678399652199309312 | NaN | NaN | 2015-12-20 02:20:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This made my day. 12/10 please enjoy https://t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678399652... | 12 | 10 | None | None | None | None | None |
| 1767 | 678396796259975168 | NaN | NaN | 2015-12-20 02:09:34 +0000 | <a href="http://twitter.com/download/iphone" r... | These little fellas have opposite facial expre... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678396796... | 12 | 10 | None | None | None | None | None |
| 1768 | 678389028614488064 | NaN | NaN | 2015-12-20 01:38:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bella. She just learned that her final... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678389028... | 11 | 10 | Bella | None | None | pupper | None |
| 1769 | 678380236862578688 | NaN | NaN | 2015-12-20 01:03:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Crumpet. He underestimated the snow. Q... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678380236... | 10 | 10 | Crumpet | None | None | None | None |
| 1770 | 678341075375947776 | NaN | NaN | 2015-12-19 22:28:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper likes tape. 12/10 https://t.co/cSp... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678341075... | 12 | 10 | None | None | None | pupper | None |
| 1771 | 678334497360859136 | NaN | NaN | 2015-12-19 22:02:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rosie. She has a snazzy bow tie and a ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678334497... | 10 | 10 | Rosie | None | None | None | None |
| 1772 | 678278586130948096 | NaN | NaN | 2015-12-19 18:19:51 +0000 | <a href="http://twitter.com/download/iphone" r... | Another spooky pupper here. Most definitely fl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678278586... | 10 | 10 | None | None | None | pupper | None |
| 1773 | 678255464182861824 | NaN | NaN | 2015-12-19 16:47:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jessifer. She is a Bismoth Teriyaki. F... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678255464... | 9 | 10 | Jessifer | None | None | None | None |
| 1774 | 678023323247357953 | 6.780211e+17 | 4.196984e+09 | 2015-12-19 01:25:31 +0000 | <a href="http://twitter.com/download/iphone" r... | After getting lost in Reese's eyes for several... | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1775 | 678021115718029313 | NaN | NaN | 2015-12-19 01:16:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reese. He likes holding hands. 12/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/678021115... | 12 | 10 | Reese | None | None | None | None |
| 1776 | 677961670166224897 | NaN | NaN | 2015-12-18 21:20:32 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is Izzy. She's showing off the dance move... | NaN | NaN | NaN | https://vine.co/v/iKuMDuYV0aZ | 11 | 10 | Izzy | None | None | None | None |
| 1777 | 677918531514703872 | NaN | NaN | 2015-12-18 18:29:07 +0000 | <a href="http://twitter.com/download/iphone" r... | "Everything looks pretty good in there. Make s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677918531... | 10 | 10 | None | None | None | None | None |
| 1778 | 677895101218201600 | NaN | NaN | 2015-12-18 16:56:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys this was terrifying. Really spooked me up... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677895101... | 9 | 10 | None | None | None | None | None |
| 1779 | 677716515794329600 | NaN | NaN | 2015-12-18 05:06:23 +0000 | <a href="http://twitter.com/download/iphone" r... | IT'S PUPPERGEDDON. Total of 144/120 ...I think... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677716515... | 144 | 120 | None | None | None | None | None |
| 1780 | 677700003327029250 | NaN | NaN | 2015-12-18 04:00:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ralph. He's an interpretive dancer. 10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677700003... | 10 | 10 | Ralph | None | None | None | None |
| 1781 | 677698403548192770 | NaN | NaN | 2015-12-18 03:54:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sadie. She got her holidays confused. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677698403... | 9 | 10 | Sadie | None | None | None | None |
| 1782 | 677687604918272002 | NaN | NaN | 2015-12-18 03:11:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This was Cindy's face when she heard Susan for... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677687604... | 11 | 10 | None | None | None | None | None |
| 1783 | 677673981332312066 | NaN | NaN | 2015-12-18 02:17:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Endangered triangular pup here. Could be a wiz... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677673981... | 9 | 10 | None | None | None | None | None |
| 1784 | 677662372920729601 | NaN | NaN | 2015-12-18 01:31:14 +0000 | <a href="http://twitter.com/download/iphone" r... | In honor of the new Star Wars movie. Here's Yo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677662372... | 12 | 10 | None | None | None | None | None |
| 1785 | 677644091929329666 | NaN | NaN | 2015-12-18 00:18:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a dog swinging. I really enjoyed it so... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677644091... | 11 | 10 | a | None | None | None | None |
| 1786 | 677573743309385728 | NaN | NaN | 2015-12-17 19:39:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sandy. He's sexually confused. Thinks ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677573743... | 10 | 10 | Sandy | None | None | None | None |
| 1787 | 677565715327688705 | NaN | NaN | 2015-12-17 19:07:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Contortionist pup here. Inside pentagram. Clea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677565715... | 6 | 10 | None | None | None | None | None |
| 1788 | 677557565589463040 | NaN | NaN | 2015-12-17 18:34:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Reckless pupper here. Not even looking at road... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677557565... | 10 | 10 | None | None | None | pupper | None |
| 1789 | 677547928504967168 | NaN | NaN | 2015-12-17 17:56:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Not much to say here. I just think everyone ne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677547928... | 12 | 10 | None | None | None | None | None |
| 1790 | 677530072887205888 | NaN | NaN | 2015-12-17 16:45:31 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Axel. He's a Black Chevy Pinot on... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677530072... | 9 | 10 | Axel | None | None | None | None |
| 1791 | 677335745548390400 | NaN | NaN | 2015-12-17 03:53:20 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Downright inspiring 12/10 https://t.co/vSLtYBWHcQ | NaN | NaN | NaN | https://vine.co/v/hbLbH77Ar67 | 12 | 10 | None | None | None | None | None |
| 1792 | 677334615166730240 | NaN | NaN | 2015-12-17 03:48:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog gave up mid jump. 9/10 https://t.co/K... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677334615... | 9 | 10 | None | None | None | None | None |
| 1793 | 677331501395156992 | NaN | NaN | 2015-12-17 03:36:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Humphrey. He's a Northern Polyp Viagra. O... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677331501... | 9 | 10 | Humphrey | None | None | None | None |
| 1794 | 677328882937298944 | NaN | NaN | 2015-12-17 03:26:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Derek. All the dogs adore Derek. He's ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677328882... | 10 | 10 | Derek | None | None | None | None |
| 1795 | 677314812125323265 | NaN | NaN | 2015-12-17 02:30:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Tassy & Bee. Tassy is pretty chill, b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677314812... | 10 | 10 | Tassy | None | None | None | None |
| 1796 | 677301033169788928 | NaN | NaN | 2015-12-17 01:35:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Juckson. He's totally on his way to a ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677301033... | 5 | 10 | Juckson | None | None | None | None |
| 1797 | 677269281705472000 | NaN | NaN | 2015-12-16 23:29:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is the happiest pupper I've ever seen. 10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677269281... | 10 | 10 | the | None | None | pupper | None |
| 1798 | 677228873407442944 | NaN | NaN | 2015-12-16 20:48:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Chuq. He just wants to fit in. 11... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677228873... | 11 | 10 | Chuq | None | None | None | None |
| 1799 | 677187300187611136 | NaN | NaN | 2015-12-16 18:03:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see a Byzantine Rigatoni. Very aerodyn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/677187300... | 9 | 10 | None | None | None | None | None |
| 1800 | 676975532580409345 | NaN | NaN | 2015-12-16 04:01:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cooper. He doesn't know how cheese wor... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676975532... | 11 | 10 | Cooper | None | None | None | None |
| 1801 | 676957860086095872 | NaN | NaN | 2015-12-16 02:51:45 +0000 | <a href="http://twitter.com/download/iphone" r... | 10/10 I'd follow this dog into battle no quest... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676957860... | 10 | 10 | None | None | None | None | None |
| 1802 | 676949632774234114 | NaN | NaN | 2015-12-16 02:19:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tyrus. He's a Speckled Centennial Tico... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676949632... | 8 | 10 | Tyrus | None | None | None | None |
| 1803 | 676948236477857792 | NaN | NaN | 2015-12-16 02:13:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Karl. Karl thinks he's slick. 6/10 sne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676948236... | 6 | 10 | Karl | None | None | None | None |
| 1804 | 676946864479084545 | NaN | NaN | 2015-12-16 02:08:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This pups goal was to get all four feet as clo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676946864... | 12 | 10 | None | None | None | None | None |
| 1805 | 676942428000112642 | NaN | NaN | 2015-12-16 01:50:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Who leaves the last cupcake just sitting there... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676942428... | 9 | 10 | None | None | None | None | None |
| 1806 | 676936541936185344 | NaN | NaN | 2015-12-16 01:27:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see a rare pouched pupper. Ample stora... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676936541... | 8 | 10 | None | None | None | pupper | None |
| 1807 | 676916996760600576 | NaN | NaN | 2015-12-16 00:09:23 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Super speedy pupper. Does not go gentle into t... | NaN | NaN | NaN | https://vine.co/v/imJ0BdZOJTw | 10 | 10 | None | None | None | pupper | None |
| 1808 | 676897532954456065 | NaN | NaN | 2015-12-15 22:52:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Exotic handheld dog here. Appears unathletic. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676897532... | 5 | 10 | None | None | None | None | None |
| 1809 | 676864501615042560 | NaN | NaN | 2015-12-15 20:40:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Ash. He's just a head now. Lost his body ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676864501... | 10 | 10 | Ash | None | None | None | None |
| 1810 | 676821958043033607 | NaN | NaN | 2015-12-15 17:51:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Finally some constructive political change in ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676821958... | 11 | 10 | None | None | None | None | None |
| 1811 | 676819651066732545 | NaN | NaN | 2015-12-15 17:42:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Watch out Airbud. This pupper is also good at ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676819651... | 12 | 10 | None | None | None | pupper | None |
| 1812 | 676811746707918848 | NaN | NaN | 2015-12-15 17:11:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Penny & Gizmo. They are pract... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676811746... | 9 | 10 | Penny | None | None | None | None |
| 1813 | 676776431406465024 | NaN | NaN | 2015-12-15 14:50:49 +0000 | <a href="http://twitter.com/download/iphone" r... | When someone yells "cops!" at a party and you ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676776431... | 10 | 10 | None | None | None | None | None |
| 1814 | 676617503762681856 | NaN | NaN | 2015-12-15 04:19:18 +0000 | <a href="http://twitter.com/download/iphone" r... | I promise this wasn't meant to be a cuteness o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676617503... | 13 | 10 | None | None | None | pupper | None |
| 1815 | 676613908052996102 | NaN | NaN | 2015-12-15 04:05:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is the saddest/sweetest/best picture I've... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676613908... | 12 | 10 | the | None | None | None | None |
| 1816 | 676606785097199616 | NaN | NaN | 2015-12-15 03:36:42 +0000 | <a href="http://twitter.com/download/iphone" r... | *screeches for a sec and then faints* 12/10 ht... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676606785... | 12 | 10 | None | None | None | None | None |
| 1817 | 676603393314578432 | NaN | NaN | 2015-12-15 03:23:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Godzilla pupper. He had a ruff childho... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676603393... | 9 | 10 | Godzilla | None | None | pupper | None |
| 1818 | 676593408224403456 | NaN | NaN | 2015-12-15 02:43:33 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This pupper loves leaves. 11/10 for committed ... | NaN | NaN | NaN | https://vine.co/v/eEQQaPFbgOY | 11 | 10 | None | None | None | pupper | None |
| 1819 | 676590572941893632 | 6.765883e+17 | 4.196984e+09 | 2015-12-15 02:32:17 +0000 | <a href="http://twitter.com/download/iphone" r... | After some outrage from the crowd. Bubbles is ... | NaN | NaN | NaN | NaN | 7 | 10 | None | None | None | None | None |
| 1820 | 676588346097852417 | NaN | NaN | 2015-12-15 02:23:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bubbles. He kinda resembles a fish. Al... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676588346... | 5 | 10 | Bubbles | None | None | None | None |
| 1821 | 676582956622721024 | NaN | NaN | 2015-12-15 02:02:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Vinnie. He's having fun while being safe.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676582956... | 8 | 10 | Vinnie | None | None | None | None |
| 1822 | 676575501977128964 | NaN | NaN | 2015-12-15 01:32:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper is very passionate about Christmas... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676575501... | 8 | 10 | None | None | None | pupper | None |
| 1823 | 676533798876651520 | NaN | NaN | 2015-12-14 22:46:41 +0000 | <a href="http://twitter.com/download/iphone" r... | ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676533798... | 12 | 10 | None | None | None | None | None |
| 1824 | 676496375194980353 | NaN | NaN | 2015-12-14 20:17:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Griffin. He's upset because his c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676496375... | 9 | 10 | Griffin | None | None | None | None |
| 1825 | 676470639084101634 | NaN | NaN | 2015-12-14 18:35:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Three generations of pupper. 11/10 for all htt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676470639... | 11 | 10 | None | None | None | pupper | None |
| 1826 | 676440007570247681 | NaN | NaN | 2015-12-14 16:34:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Hope your Monday isn't too awful. Here's two b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676440007... | 11 | 10 | None | None | None | None | None |
| 1827 | 676430933382295552 | NaN | NaN | 2015-12-14 15:57:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Duke. He's an Urban Parmesan. They know h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676430933... | 10 | 10 | Duke | None | None | None | None |
| 1828 | 676263575653122048 | NaN | NaN | 2015-12-14 04:52:55 +0000 | <a href="http://twitter.com/download/iphone" r... | All this pupper wanted to do was go skiing. No... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676263575... | 10 | 10 | None | None | None | pupper | None |
| 1829 | 676237365392908289 | NaN | NaN | 2015-12-14 03:08:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Winston. He has no respect for th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676237365... | 8 | 10 | Winston | None | None | None | None |
| 1830 | 676219687039057920 | NaN | NaN | 2015-12-14 01:58:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kenneth. He's stuck in a bubble. 10/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676219687... | 10 | 10 | Kenneth | None | None | None | None |
| 1831 | 676215927814406144 | NaN | NaN | 2015-12-14 01:43:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Herm. He just wants to be like the oth... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676215927... | 9 | 10 | Herm | None | None | None | None |
| 1832 | 676191832485810177 | NaN | NaN | 2015-12-14 00:07:50 +0000 | <a href="http://twitter.com/download/iphone" r... | These two pups just met and have instantly bon... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676191832... | 10 | 10 | None | None | None | None | None |
| 1833 | 676146341966438401 | NaN | NaN | 2015-12-13 21:07:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bert. He likes flowers. 10/10 https://... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676146341... | 10 | 10 | Bert | None | None | None | None |
| 1834 | 676121918416756736 | NaN | NaN | 2015-12-13 19:30:01 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Here we are witnessing a very excited dog. Cle... | NaN | NaN | NaN | https://vine.co/v/iZXg7VpeDAv | 8 | 10 | None | None | None | None | None |
| 1835 | 676101918813499392 | NaN | NaN | 2015-12-13 18:10:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Striker. He's ready for Christmas. 11/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676101918... | 11 | 10 | Striker | None | None | None | None |
| 1836 | 676098748976615425 | NaN | NaN | 2015-12-13 17:57:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Extremely rare pup here. Very religious. Alway... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676098748... | 3 | 10 | None | None | None | None | None |
| 1837 | 676089483918516224 | NaN | NaN | 2015-12-13 17:21:08 +0000 | <a href="http://twitter.com/download/iphone" r... | "Yes hello I'ma just snag this here toasted ba... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/676089483... | 9 | 10 | None | None | None | None | None |
| 1838 | 675898130735476737 | NaN | NaN | 2015-12-13 04:40:46 +0000 | <a href="http://twitter.com/download/iphone" r... | I'm sure you've all seen this pupper. Not prep... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675898130... | 10 | 10 | None | None | None | pupper | None |
| 1839 | 675891555769696257 | NaN | NaN | 2015-12-13 04:14:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Donny. He's summoning the demon monste... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675891555... | 6 | 10 | Donny | None | None | None | None |
| 1840 | 675888385639251968 | NaN | NaN | 2015-12-13 04:02:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Breathtaking scene. A father taking care of hi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675888385... | 10 | 10 | None | None | None | None | None |
| 1841 | 675878199931371520 | NaN | NaN | 2015-12-13 03:21:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Ok, I'll admit this is a pretty adorable bunny... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675878199... | 11 | 10 | None | None | None | None | None |
| 1842 | 675870721063669760 | 6.757073e+17 | 4.196984e+09 | 2015-12-13 02:51:51 +0000 | <a href="http://twitter.com/download/iphone" r... | & this is Yoshi. Another world record cont... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675870721... | 11 | 10 | None | None | None | None | None |
| 1843 | 675853064436391936 | NaN | NaN | 2015-12-13 01:41:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have an entire platoon of puppers. Tot... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675853064... | 88 | 80 | None | None | None | None | None |
| 1844 | 675849018447167488 | 6.758457e+17 | 4.196984e+09 | 2015-12-13 01:25:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog is being demoted to a 9/10 for not we... | NaN | NaN | NaN | NaN | 9 | 10 | None | None | None | None | None |
| 1845 | 675845657354215424 | NaN | NaN | 2015-12-13 01:12:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pepper. She's not fully comfortable ri... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675845657... | 10 | 10 | Pepper | None | None | pupper | None |
| 1846 | 675822767435051008 | NaN | NaN | 2015-12-12 23:41:18 +0000 | <a href="http://twitter.com/download/iphone" r... | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s ht... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675822767... | 10 | 10 | None | None | None | None | None |
| 1847 | 675820929667219457 | NaN | NaN | 2015-12-12 23:34:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a handful of sleepy puppers. All look u... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675820929... | 11 | 10 | None | None | None | None | None |
| 1848 | 675798442703122432 | NaN | NaN | 2015-12-12 22:04:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bernie. He just touched a boob for the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675798442... | 10 | 10 | Bernie | None | None | None | None |
| 1849 | 675781562965868544 | NaN | NaN | 2015-12-12 20:57:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Buddah. He was Waldo for Hallowee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675781562... | 11 | 10 | Buddah | None | None | None | None |
| 1850 | 675740360753160193 | NaN | NaN | 2015-12-12 18:13:51 +0000 | <a href="http://twitter.com/download/iphone" r... | Here's a pupper licking in slow motion. 12/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675740360... | 12 | 10 | None | None | None | pupper | None |
| 1851 | 675710890956750848 | NaN | NaN | 2015-12-12 16:16:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lenny. He was just told that he couldn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675710890... | 12 | 10 | Lenny | None | None | None | None |
| 1852 | 675707330206547968 | 6.754971e+17 | 4.196984e+09 | 2015-12-12 16:02:36 +0000 | <a href="http://twitter.com/download/iphone" r... | We've got ourselves a battle here. Watch out R... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675707330... | 11 | 10 | None | None | None | None | None |
| 1853 | 675706639471788032 | NaN | NaN | 2015-12-12 15:59:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Sizzlin Menorah spaniel from Brookly... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675706639... | 10 | 10 | a | None | None | None | None |
| 1854 | 675534494439489536 | NaN | NaN | 2015-12-12 04:35:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Seriously guys?! Only send in dogs. I only rat... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675534494... | 11 | 10 | a | None | None | None | None |
| 1855 | 675531475945709568 | NaN | NaN | 2015-12-12 04:23:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ellie AKA Queen Slayer of the Orbs. Ve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675531475... | 10 | 10 | Ellie | None | None | None | None |
| 1856 | 675522403582218240 | NaN | NaN | 2015-12-12 03:47:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sammy. He's a Motorola Firefox. Hat under... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675522403... | 10 | 10 | Sammy | None | None | None | None |
| 1857 | 675517828909424640 | NaN | NaN | 2015-12-12 03:29:35 +0000 | <a href="http://twitter.com/download/iphone" r... | 12/10 stay woke https://t.co/XDiQw4Akiw | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675517828... | 12 | 10 | None | None | None | None | None |
| 1858 | 675501075957489664 | NaN | NaN | 2015-12-12 02:23:01 +0000 | <a href="http://twitter.com/download/iphone" r... | I shall call him squishy and he shall be mine,... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675501075... | 13 | 10 | None | None | None | None | None |
| 1859 | 675497103322386432 | NaN | NaN | 2015-12-12 02:07:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Reggie. He's going for the world record. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675497103... | 11 | 10 | Reggie | None | None | None | None |
| 1860 | 675489971617296384 | NaN | NaN | 2015-12-12 01:38:53 +0000 | <a href="http://twitter.com/download/iphone" r... | RT until we find this dog. Clearly a cool dog ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675489971... | 10 | 10 | None | None | None | None | None |
| 1861 | 675483430902214656 | NaN | NaN | 2015-12-12 01:12:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Rare shielded battle dog here. Very happy abou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675483430... | 5 | 10 | None | None | None | None | None |
| 1862 | 675432746517426176 | NaN | NaN | 2015-12-11 21:51:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Happy Friday. Here's some golden puppers. 12/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675432746... | 12 | 10 | None | None | None | None | None |
| 1863 | 675372240448454658 | NaN | NaN | 2015-12-11 17:51:04 +0000 | <a href="http://twitter.com/download/iphone" r... | The tail alone is 13/10. Great dog, better own... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675372240... | 13 | 10 | None | None | None | None | None |
| 1864 | 675362609739206656 | NaN | NaN | 2015-12-11 17:12:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Daisy. She loves that shoe. Still no s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675362609... | 12 | 10 | Daisy | None | None | None | None |
| 1865 | 675354435921575936 | NaN | NaN | 2015-12-11 16:40:19 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Everyone needs to watch this. 13/10 https://t.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675354435... | 13 | 10 | None | None | None | None | None |
| 1866 | 675349384339542016 | 6.749998e+17 | 4.196984e+09 | 2015-12-11 16:20:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Yea I lied. Here's more. All 13/10 https://t.c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675349384... | 13 | 10 | None | None | None | None | None |
| 1867 | 675334060156301312 | NaN | NaN | 2015-12-11 15:19:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Good morning here's a grass pupper. 12/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675334060... | 12 | 10 | None | None | None | pupper | None |
| 1868 | 675166823650848770 | NaN | NaN | 2015-12-11 04:14:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Arnold. He broke his leg saving a hand... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675166823... | 10 | 10 | Arnold | None | None | None | None |
| 1869 | 675153376133427200 | NaN | NaN | 2015-12-11 03:21:23 +0000 | <a href="http://twitter.com/download/iphone" r... | What kind of person sends in a picture without... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675153376... | 1 | 10 | None | None | None | None | None |
| 1870 | 675149409102012420 | NaN | NaN | 2015-12-11 03:05:37 +0000 | <a href="http://twitter.com/download/iphone" r... | holy shit 12/10 https://t.co/p6O8X93bTQ | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675149409... | 12 | 10 | None | None | None | None | None |
| 1871 | 675147105808306176 | NaN | NaN | 2015-12-11 02:56:28 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're presenting a group project and the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675147105... | 10 | 10 | None | None | None | None | None |
| 1872 | 675146535592706048 | NaN | NaN | 2015-12-11 02:54:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Coops. He's yelling at the carpet. Not... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675146535... | 7 | 10 | Coops | None | None | None | None |
| 1873 | 675145476954566656 | NaN | NaN | 2015-12-11 02:49:59 +0000 | <a href="http://twitter.com/download/iphone" r... | What an honor. 3 dogs here. Blond one is clear... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675145476... | 9 | 10 | None | None | None | None | None |
| 1874 | 675135153782571009 | NaN | NaN | 2015-12-11 02:08:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Steven. He got locked outside. Damn it... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675135153... | 5 | 10 | Steven | None | None | None | None |
| 1875 | 675113801096802304 | NaN | NaN | 2015-12-11 00:44:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Zuzu. He just graduated college. Astute p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675113801... | 10 | 10 | Zuzu | None | None | pupper | None |
| 1876 | 675111688094527488 | NaN | NaN | 2015-12-11 00:35:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Oliver. He thought what was insid... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675111688... | 8 | 10 | Oliver | None | None | None | None |
| 1877 | 675109292475830276 | NaN | NaN | 2015-12-11 00:26:12 +0000 | <a href="http://twitter.com/download/iphone" r... | C'mon guys. We've been over this. We only rate... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675109292... | 9 | 10 | a | None | None | None | None |
| 1878 | 675047298674663426 | NaN | NaN | 2015-12-10 20:19:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a fluffy albino Bacardi Columbia mix. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675047298... | 11 | 10 | a | None | None | None | None |
| 1879 | 675015141583413248 | NaN | NaN | 2015-12-10 18:12:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Moe. He's a golden Fetty Woof. Doesn't re... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675015141... | 10 | 10 | Moe | None | None | None | None |
| 1880 | 675006312288268288 | NaN | NaN | 2015-12-10 17:37:00 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Mollie. This pic was taken after ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675006312... | 10 | 10 | Mollie | None | None | pupper | None |
| 1881 | 675003128568291329 | NaN | NaN | 2015-12-10 17:24:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Laela. She's adorable. Magnificent eyes. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/675003128... | 12 | 10 | Laela | None | None | None | None |
| 1882 | 674999807681908736 | 6.747934e+17 | 4.196984e+09 | 2015-12-10 17:11:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Ok last one of these. I may try to make some m... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674999807... | 13 | 10 | None | None | None | None | None |
| 1883 | 674805413498527744 | NaN | NaN | 2015-12-10 04:18:42 +0000 | <a href="http://twitter.com/download/iphone" r... | When your entire life is crumbling before you ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674805413... | 10 | 10 | None | None | None | None | None |
| 1884 | 674800520222154752 | NaN | NaN | 2015-12-10 03:59:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tedders. He broke his leg saving babie... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674800520... | 11 | 10 | Tedders | None | None | None | None |
| 1885 | 674793399141146624 | 6.717299e+17 | 4.196984e+09 | 2015-12-10 03:30:58 +0000 | <a href="http://twitter.com/download/iphone" r... | I have found another. 13/10 https://t.co/HwroP... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674793399... | 13 | 10 | None | None | None | None | None |
| 1886 | 674790488185167872 | NaN | NaN | 2015-12-10 03:19:24 +0000 | <a href="http://twitter.com/download/iphone" r... | ER... MER... GERD 13/10 https://t.co/L1puJISV1a | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674790488... | 13 | 10 | None | None | None | None | None |
| 1887 | 674788554665512960 | NaN | NaN | 2015-12-10 03:11:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Maggie. She's a Western Septic Do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674788554... | 9 | 10 | Maggie | None | None | None | None |
| 1888 | 674781762103414784 | NaN | NaN | 2015-12-10 02:44:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Bedazzled pup here. Fashionable af. Super yell... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674781762... | 8 | 10 | None | None | None | None | None |
| 1889 | 674774481756377088 | NaN | NaN | 2015-12-10 02:15:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Superpup. His head isn't proportional ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674774481... | 11 | 10 | Superpup | None | None | pupper | None |
| 1890 | 674767892831932416 | NaN | NaN | 2015-12-10 01:49:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This pup was carefully tossed to make it look ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674767892... | 12 | 10 | None | None | None | None | None |
| 1891 | 674764817387900928 | NaN | NaN | 2015-12-10 01:37:23 +0000 | <a href="http://twitter.com/download/iphone" r... | These two pups are masters of camouflage. Very... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674764817... | 10 | 10 | None | None | None | None | None |
| 1892 | 674754018082705410 | 6.747522e+17 | 4.196984e+09 | 2015-12-10 00:54:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Just received another perfect photo of dogs an... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674754018... | 12 | 10 | None | None | None | None | None |
| 1893 | 674752233200820224 | NaN | NaN | 2015-12-10 00:47:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Everyone please just appreciate how perfect th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674752233... | 12 | 10 | None | None | None | None | None |
| 1894 | 674743008475090944 | NaN | NaN | 2015-12-10 00:10:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sophie. She just saw a spider. 10/10 d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674743008... | 10 | 10 | Sophie | None | None | None | None |
| 1895 | 674742531037511680 | 6.747400e+17 | 4.196984e+09 | 2015-12-10 00:08:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Some clarification is required. The dog is sin... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 1896 | 674739953134403584 | NaN | NaN | 2015-12-09 23:58:35 +0000 | <a href="http://twitter.com/download/iphone" r... | "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674739953... | 11 | 10 | None | None | None | None | None |
| 1897 | 674737130913071104 | NaN | NaN | 2015-12-09 23:47:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rufio. He is unaware of the pink legless ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674737130... | 10 | 10 | Rufio | None | None | pupper | None |
| 1898 | 674690135443775488 | NaN | NaN | 2015-12-09 20:40:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Patrick. He's an exotic pup. Jumps great ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674690135... | 3 | 10 | Patrick | None | None | None | None |
| 1899 | 674670581682434048 | NaN | NaN | 2015-12-09 19:22:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jeb & Bush. Jeb is somehow stuck in t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674670581... | 9 | 10 | Jeb | None | None | None | None |
| 1900 | 674664755118911488 | NaN | NaN | 2015-12-09 18:59:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rodman. He's getting destroyed by the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674664755... | 10 | 10 | Rodman | None | None | None | None |
| 1901 | 674646392044941312 | NaN | NaN | 2015-12-09 17:46:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Two gorgeous dogs here. Little waddling dog is... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674646392... | 5 | 10 | None | None | None | None | None |
| 1902 | 674644256330530816 | NaN | NaN | 2015-12-09 17:38:19 +0000 | <a href="http://twitter.com/download/iphone" r... | When you see sophomores in high school driving... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674644256... | 11 | 10 | None | None | None | None | None |
| 1903 | 674638615994089473 | NaN | NaN | 2015-12-09 17:15:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper is fed up with being tickled. 12/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674638615... | 12 | 10 | None | None | None | pupper | None |
| 1904 | 674632714662858753 | NaN | NaN | 2015-12-09 16:52:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Rare submerged pup here. Holds breath for a lo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674632714... | 5 | 10 | None | None | None | None | None |
| 1905 | 674606911342424069 | 6.744689e+17 | 4.196984e+09 | 2015-12-09 15:09:55 +0000 | <a href="http://twitter.com/download/iphone" r... | The 13/10 also takes into account this impecca... | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1906 | 674468880899788800 | NaN | NaN | 2015-12-09 06:01:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Louis. He thinks he's flying. 13/10 th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674468880... | 13 | 10 | Louis | None | None | None | None |
| 1907 | 674447403907457024 | NaN | NaN | 2015-12-09 04:36:06 +0000 | <a href="http://twitter.com/download/iphone" r... | This pupper just wants a belly rub. This puppe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674447403... | 10 | 10 | None | None | None | pupper | None |
| 1908 | 674436901579923456 | NaN | NaN | 2015-12-09 03:54:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Bailey. She plays with her food. Very chi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674436901... | 9 | 10 | Bailey | None | None | None | None |
| 1909 | 674422304705744896 | NaN | NaN | 2015-12-09 02:56:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ava. She doesn't understand flowers. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674422304... | 12 | 10 | Ava | None | None | None | None |
| 1910 | 674416750885273600 | NaN | NaN | 2015-12-09 02:34:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jonah. He's a Stinted Fisher Price. En... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674416750... | 10 | 10 | Jonah | None | None | None | None |
| 1911 | 674410619106390016 | NaN | NaN | 2015-12-09 02:09:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lenny. He wants to be a sprinkler. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674410619... | 10 | 10 | Lenny | None | None | None | None |
| 1912 | 674394782723014656 | NaN | NaN | 2015-12-09 01:07:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gary. He's a hide and seek champion. S... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674394782... | 8 | 10 | Gary | None | None | None | None |
| 1913 | 674372068062928900 | NaN | NaN | 2015-12-08 23:36:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Chesney. On the outside he stays calm &am... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674372068... | 10 | 10 | Chesney | None | None | None | None |
| 1914 | 674330906434379776 | 6.658147e+17 | 1.637468e+07 | 2015-12-08 20:53:11 +0000 | <a href="http://twitter.com/download/iphone" r... | 13/10\n@ABC7 | NaN | NaN | NaN | NaN | 13 | 10 | None | None | None | None | None |
| 1915 | 674318007229923329 | NaN | NaN | 2015-12-08 20:01:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lennon. He's in quite the predicament.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674318007... | 8 | 10 | Lennon | None | None | pupper | None |
| 1916 | 674307341513269249 | NaN | NaN | 2015-12-08 19:19:32 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | This is life-changing. 12/10 https://t.co/SroT... | NaN | NaN | NaN | https://vine.co/v/i7nWzrenw5h | 12 | 10 | life | None | None | None | None |
| 1917 | 674291837063053312 | NaN | NaN | 2015-12-08 18:17:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kenny. He just wants to be included in... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674291837... | 11 | 10 | Kenny | None | None | None | None |
| 1918 | 674271431610523648 | NaN | NaN | 2015-12-08 16:56:51 +0000 | <a href="http://twitter.com/download/iphone" r... | "AT DAWN, WE RIDE"\n10/10 for both dogs https:... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674271431... | 10 | 10 | None | None | None | None | None |
| 1919 | 674269164442398721 | NaN | NaN | 2015-12-08 16:47:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bob. He's a Juniper Fitzsimmons. His b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674269164... | 8 | 10 | Bob | None | None | None | None |
| 1920 | 674265582246694913 | NaN | NaN | 2015-12-08 16:33:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Henry. He's a shit dog. Short pointy e... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674265582... | 2 | 10 | Henry | None | None | None | None |
| 1921 | 674262580978937856 | NaN | NaN | 2015-12-08 16:21:41 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gus. He's super stoked about being an ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674262580... | 9 | 10 | Gus | None | None | pupper | None |
| 1922 | 674255168825880576 | NaN | NaN | 2015-12-08 15:52:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Bobbay. He's a marshmallow wizard... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674255168... | 10 | 10 | Bobbay | None | None | None | None |
| 1923 | 674082852460433408 | NaN | NaN | 2015-12-08 04:27:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Sagitariot Baklava mix. Loves her ne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674082852... | 11 | 10 | a | None | None | None | None |
| 1924 | 674075285688614912 | NaN | NaN | 2015-12-08 03:57:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Mitch. He thinks that's a hat. No... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674075285... | 11 | 10 | Mitch | None | None | None | None |
| 1925 | 674063288070742018 | NaN | NaN | 2015-12-08 03:09:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Earl. Earl is lost. Someone help Earl.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674063288... | 5 | 10 | Earl | None | None | None | None |
| 1926 | 674053186244734976 | NaN | NaN | 2015-12-08 02:29:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Stanley. Yes he is aware of the spoon'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674053186... | 10 | 10 | Stanley | None | None | None | None |
| 1927 | 674051556661161984 | NaN | NaN | 2015-12-08 02:23:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lucy. She knits. Specializes in tobogg... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674051556... | 10 | 10 | Lucy | None | None | None | None |
| 1928 | 674045139690631169 | NaN | NaN | 2015-12-08 01:57:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Herd of wild dogs here. Not sure what they're ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674045139... | 3 | 10 | None | None | None | None | None |
| 1929 | 674042553264685056 | NaN | NaN | 2015-12-08 01:47:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Yea I can't handle the cuteness anymore. Curls... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674042553... | 12 | 10 | None | None | None | None | None |
| 1930 | 674038233588723717 | NaN | NaN | 2015-12-08 01:30:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kaiya. She's an aspiring shoe model. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674038233... | 12 | 10 | Kaiya | None | None | pupper | None |
| 1931 | 674036086168010753 | NaN | NaN | 2015-12-08 01:21:40 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Daisy. She has no eyes & her face has... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674036086... | 9 | 10 | Daisy | None | None | None | None |
| 1932 | 674024893172875264 | NaN | NaN | 2015-12-08 00:37:11 +0000 | <a href="http://twitter.com/download/iphone" r... | When you realize it doesn't matter how hard yo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674024893... | 10 | 10 | None | None | None | None | None |
| 1933 | 674019345211760640 | NaN | NaN | 2015-12-08 00:15:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Acro. You briefly see her out of the c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674019345... | 10 | 10 | Acro | None | None | None | None |
| 1934 | 674014384960745472 | NaN | NaN | 2015-12-07 23:55:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Aiden. His eyes are magical. Love... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674014384... | 11 | 10 | Aiden | None | None | None | None |
| 1935 | 674008982932058114 | NaN | NaN | 2015-12-07 23:33:58 +0000 | <a href="http://twitter.com/download/iphone" r... | This pup is sad bc he didn't get to be the toy... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/674008982... | 10 | 10 | None | None | None | None | None |
| 1936 | 673956914389192708 | NaN | NaN | 2015-12-07 20:07:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is one esteemed pupper. Just graduated co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673956914... | 10 | 10 | one | None | None | pupper | None |
| 1937 | 673919437611909120 | NaN | NaN | 2015-12-07 17:38:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Obie. He is on guard watching for evil... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673919437... | 11 | 10 | Obie | None | None | pupper | None |
| 1938 | 673906403526995968 | NaN | NaN | 2015-12-07 16:46:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Guys I'm getting real tired of this. We only r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673906403... | 3 | 10 | None | None | None | None | None |
| 1939 | 673887867907739649 | NaN | NaN | 2015-12-07 15:32:42 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're having a great time sleeping and y... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673887867... | 10 | 10 | None | None | None | None | None |
| 1940 | 673716320723169284 | 6.737159e+17 | 4.196984e+09 | 2015-12-07 04:11:02 +0000 | <a href="http://twitter.com/download/iphone" r... | The millennials have spoken and we've decided ... | NaN | NaN | NaN | NaN | 1 | 10 | None | None | None | None | None |
| 1941 | 673715861853720576 | NaN | NaN | 2015-12-07 04:09:13 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a heavily opinionated dog. Loves walls... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673715861... | 4 | 10 | a | None | None | None | None |
| 1942 | 673711475735838725 | NaN | NaN | 2015-12-07 03:51:47 +0000 | <a href="http://twitter.com/download/iphone" r... | 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 htt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673711475... | 10 | 10 | None | None | None | None | None |
| 1943 | 673709992831262724 | NaN | NaN | 2015-12-07 03:45:53 +0000 | <a href="http://twitter.com/download/iphone" r... | I know a lot of you are studying for finals. G... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673709992... | 12 | 10 | None | None | None | None | None |
| 1944 | 673708611235921920 | NaN | NaN | 2015-12-07 03:40:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Riley. She's just an adorable football... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673708611... | 12 | 10 | Riley | None | None | None | None |
| 1945 | 673707060090052608 | NaN | NaN | 2015-12-07 03:34:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Raymond. He's absolutely terrified of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673707060... | 10 | 10 | Raymond | None | None | pupper | None |
| 1946 | 673705679337693185 | NaN | NaN | 2015-12-07 03:28:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dot. He found out you only pretended t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673705679... | 8 | 10 | Dot | None | None | None | None |
| 1947 | 673700254269775872 | NaN | NaN | 2015-12-07 03:07:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Large blue dog here. Cool shades. Flipping us ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673700254... | 3 | 10 | None | None | None | None | None |
| 1948 | 673697980713705472 | NaN | NaN | 2015-12-07 02:58:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pickles. She's a tiny pointy pupper. A... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673697980... | 8 | 10 | Pickles | None | None | pupper | None |
| 1949 | 673689733134946305 | NaN | NaN | 2015-12-07 02:25:23 +0000 | <a href="http://twitter.com/download/iphone" r... | When you're having a blast and remember tomorr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673689733... | 11 | 10 | None | None | None | None | None |
| 1950 | 673688752737402881 | NaN | NaN | 2015-12-07 02:21:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Larry. He doesn't know how to shoe. 9/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673688752... | 9 | 10 | Larry | None | None | None | None |
| 1951 | 673686845050527744 | NaN | NaN | 2015-12-07 02:13:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is George. He's upset that the 4th of Jul... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673686845... | 11 | 10 | George | None | None | None | None |
| 1952 | 673680198160809984 | NaN | NaN | 2015-12-07 01:47:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shnuggles. I would kill for Shnuggles.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673680198... | 13 | 10 | Shnuggles | None | None | None | None |
| 1953 | 673662677122719744 | NaN | NaN | 2015-12-07 00:37:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kendall. 12/10 would cuddle the hell o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673662677... | 12 | 10 | Kendall | None | None | None | None |
| 1954 | 673656262056419329 | NaN | NaN | 2015-12-07 00:12:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Albert AKA King Banana Peel. He's a ki... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673656262... | 10 | 10 | Albert | None | None | pupper | None |
| 1955 | 673636718965334016 | NaN | NaN | 2015-12-06 22:54:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Lofted Aphrodisiac Terrier named Kip... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673636718... | 10 | 10 | a | None | None | None | None |
| 1956 | 673612854080196609 | NaN | NaN | 2015-12-06 21:19:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeffri. He's a speckled ice pupper. Ve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673612854... | 7 | 10 | Jeffri | None | None | pupper | None |
| 1957 | 673583129559498752 | NaN | NaN | 2015-12-06 19:21:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sandy. She loves her spot by the tree.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673583129... | 11 | 10 | Sandy | None | None | None | None |
| 1958 | 673580926094458881 | NaN | NaN | 2015-12-06 19:13:01 +0000 | <a href="http://twitter.com/download/iphone" r... | When you ask your professor about extra credit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673580926... | 8 | 10 | None | None | None | None | None |
| 1959 | 673576835670777856 | NaN | NaN | 2015-12-06 18:56:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Sun burnt dog here. Quite large. Wants to prom... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673576835... | 7 | 10 | None | None | None | None | None |
| 1960 | 673363615379013632 | NaN | NaN | 2015-12-06 04:49:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This little pupper can't wait for Christmas. H... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673363615... | 11 | 10 | None | None | None | pupper | None |
| 1961 | 673359818736984064 | NaN | NaN | 2015-12-06 04:34:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Steve. He was just relaxing in hot tub... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673359818... | 8 | 10 | Steve | None | None | None | None |
| 1962 | 673355879178194945 | NaN | NaN | 2015-12-06 04:18:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Koda. She's a boss. Helps shift gears.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673355879... | 11 | 10 | Koda | None | None | None | None |
| 1963 | 673352124999274496 | NaN | NaN | 2015-12-06 04:03:51 +0000 | <a href="http://twitter.com/download/iphone" r... | *lets out a tiny screech and then goes into co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673352124... | 12 | 10 | None | None | None | None | None |
| 1964 | 673350198937153538 | NaN | NaN | 2015-12-06 03:56:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bella. She's a Genghis Flopped Canuck.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673350198... | 9 | 10 | Bella | None | None | None | None |
| 1965 | 673345638550134785 | NaN | NaN | 2015-12-06 03:38:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gerald. He's a fluffy lil yellow pup. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673345638... | 7 | 10 | Gerald | None | None | None | None |
| 1966 | 673343217010679808 | NaN | NaN | 2015-12-06 03:28:27 +0000 | <a href="http://twitter.com/download/iphone" r... | IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNU... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673343217... | 11 | 10 | None | None | None | None | None |
| 1967 | 673342308415348736 | NaN | NaN | 2015-12-06 03:24:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Django. He's a skilled assassin pupper... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673342308... | 10 | 10 | Django | None | None | pupper | None |
| 1968 | 673320132811366400 | NaN | NaN | 2015-12-06 01:56:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Frankie. He's wearing blush. 11/10 rea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673320132... | 11 | 10 | Frankie | None | None | None | None |
| 1969 | 673317986296586240 | NaN | NaN | 2015-12-06 01:48:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Take a moment and appreciate how these two dog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673317986... | 10 | 10 | None | None | None | None | None |
| 1970 | 673295268553605120 | NaN | NaN | 2015-12-06 00:17:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Eve. She's a raging alcoholic 8/10 (would... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673295268... | 8 | 10 | Eve | None | None | pupper | None |
| 1971 | 673270968295534593 | NaN | NaN | 2015-12-05 22:41:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mac. His dad's probably a lawyer. 11/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673270968... | 11 | 10 | Mac | None | None | None | None |
| 1972 | 673240798075449344 | NaN | NaN | 2015-12-05 20:41:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Magical floating dog here. Very calm. Always h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673240798... | 6 | 10 | None | None | None | None | None |
| 1973 | 673213039743795200 | NaN | NaN | 2015-12-05 18:51:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Dexter. He just got some big news. 10/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673213039... | 10 | 10 | Dexter | None | None | None | None |
| 1974 | 673148804208660480 | NaN | NaN | 2015-12-05 14:35:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fletcher. He's had a ruff night. No mo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/673148804... | 8 | 10 | Fletcher | None | None | pupper | None |
| 1975 | 672997845381865473 | NaN | NaN | 2015-12-05 04:36:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Kenzie. She is a fluff ball. 12/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672997845... | 12 | 10 | Kenzie | None | None | None | None |
| 1976 | 672995267319328768 | NaN | NaN | 2015-12-05 04:25:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pumpkin. He can look in two different ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672995267... | 8 | 10 | Pumpkin | None | None | None | None |
| 1977 | 672988786805112832 | NaN | NaN | 2015-12-05 04:00:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Schnozz. He's had a blurred tail since... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672988786... | 10 | 10 | Schnozz | None | None | pupper | None |
| 1978 | 672984142909456390 | NaN | NaN | 2015-12-05 03:41:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Very happy pup here. Always smiling. Loves his... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672984142... | 9 | 10 | None | None | None | None | None |
| 1979 | 672980819271634944 | NaN | NaN | 2015-12-05 03:28:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Extraordinary dog here. Looks large. Just a he... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672980819... | 5 | 10 | None | None | None | None | None |
| 1980 | 672975131468300288 | NaN | NaN | 2015-12-05 03:05:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chuckles. He is one skeptical pupper. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672975131... | 10 | 10 | Chuckles | None | None | pupper | None |
| 1981 | 672970152493887488 | NaN | NaN | 2015-12-05 02:46:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chet. He's having a hard time. Really ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672970152... | 7 | 10 | Chet | None | None | pupper | None |
| 1982 | 672968025906282496 | NaN | NaN | 2015-12-05 02:37:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gustaf. He's a purebred Chevy Equinox.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672968025... | 11 | 10 | Gustaf | None | None | None | None |
| 1983 | 672964561327235073 | NaN | NaN | 2015-12-05 02:23:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Terry. He's a Toasty Western Sriracha.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672964561... | 10 | 10 | Terry | None | None | None | None |
| 1984 | 672902681409806336 | NaN | NaN | 2015-12-04 22:17:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jimison. He's stuck in a pot. Damn it ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672902681... | 9 | 10 | Jimison | None | None | None | None |
| 1985 | 672898206762672129 | NaN | NaN | 2015-12-04 22:00:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cheryl AKA Queen Pupper of the Skies. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672898206... | 11 | 10 | Cheryl | None | None | pupper | None |
| 1986 | 672884426393653248 | NaN | NaN | 2015-12-04 21:05:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Marvelous dog here. Rad ears. Not very soft. L... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672884426... | 6 | 10 | None | None | None | None | None |
| 1987 | 672877615439593473 | NaN | NaN | 2015-12-04 20:38:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oscar. He's getting bombarded with the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672877615... | 8 | 10 | Oscar | None | None | None | None |
| 1988 | 672834301050937345 | NaN | NaN | 2015-12-04 17:46:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ed. He's not mad, just disappointed. 1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672834301... | 10 | 10 | Ed | None | None | None | None |
| 1989 | 672828477930868736 | NaN | NaN | 2015-12-04 17:23:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jerry. He's a Timbuk Slytherin. Eats h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672828477... | 9 | 10 | Jerry | None | None | None | None |
| 1990 | 672640509974827008 | NaN | NaN | 2015-12-04 04:56:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Leonidas. He just got rekt by a snowba... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672640509... | 9 | 10 | Leonidas | None | None | None | None |
| 1991 | 672622327801233409 | NaN | NaN | 2015-12-04 03:43:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This lil pupper is sad because we haven't foun... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672622327... | 12 | 10 | None | None | None | pupper | None |
| 1992 | 672614745925664768 | NaN | NaN | 2015-12-04 03:13:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Norman. Doesn't bark much. Very docile... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672614745... | 6 | 10 | Norman | None | None | pupper | None |
| 1993 | 672609152938721280 | NaN | NaN | 2015-12-04 02:51:33 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Caryl. Likes to get in the microwave. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672609152... | 9 | 10 | Caryl | None | None | None | None |
| 1994 | 672604026190569472 | NaN | NaN | 2015-12-04 02:31:10 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a baby Rand Paul. Curls for days. 11/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672604026... | 11 | 10 | a | None | None | None | None |
| 1995 | 672594978741354496 | NaN | NaN | 2015-12-04 01:55:13 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Scott. Just trying to catch his train to ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672594978... | 9 | 10 | Scott | None | None | pupper | None |
| 1996 | 672591762242805761 | NaN | NaN | 2015-12-04 01:42:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Taz. He boxes leaves. 10/10 https://t.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672591762... | 10 | 10 | Taz | None | None | None | None |
| 1997 | 672591271085670400 | NaN | NaN | 2015-12-04 01:40:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Lots of pups here. All are Judea Hazelnuts. Ex... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672591271... | 8 | 10 | None | None | None | None | None |
| 1998 | 672538107540070400 | NaN | NaN | 2015-12-03 22:09:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Darby. He's a Fiscal Tutankhamen Waxbeard... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672538107... | 7 | 10 | Darby | None | None | None | None |
| 1999 | 672523490734551040 | NaN | NaN | 2015-12-03 21:11:09 +0000 | <a href="http://twitter.com/download/iphone" r... | When she says she'll be ready in a minute but ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672523490... | 10 | 10 | None | None | None | None | None |
| 2000 | 672488522314567680 | NaN | NaN | 2015-12-03 18:52:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jackie. She was all ready to go out, b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672488522... | 10 | 10 | Jackie | None | None | None | None |
| 2001 | 672482722825261057 | NaN | NaN | 2015-12-03 18:29:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is light saber pup. Ready to fight off ev... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672482722... | 10 | 10 | light | None | None | None | None |
| 2002 | 672481316919734272 | NaN | NaN | 2015-12-03 18:23:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Jazz. She should be on the cover ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672481316... | 12 | 10 | Jazz | None | None | pupper | None |
| 2003 | 672475084225949696 | NaN | NaN | 2015-12-03 17:58:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Buddy. He's photogenic af. Loves to se... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672475084... | 8 | 10 | Buddy | None | None | None | None |
| 2004 | 672466075045466113 | NaN | NaN | 2015-12-03 17:23:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Franq and Pablo. They're working hard ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672466075... | 12 | 10 | Franq | None | None | None | None |
| 2005 | 672272411274932228 | NaN | NaN | 2015-12-03 04:33:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pippin. He is terrified of his new lit... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672272411... | 11 | 10 | Pippin | None | None | None | None |
| 2006 | 672267570918129665 | NaN | NaN | 2015-12-03 04:14:13 +0000 | <a href="http://twitter.com/download/iphone" r... | When you accidentally open up the front facing... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672267570... | 10 | 10 | None | None | None | None | None |
| 2007 | 672264251789176834 | NaN | NaN | 2015-12-03 04:01:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kreg. He has the eyes of a tyrannical ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672264251... | 10 | 10 | Kreg | None | None | None | None |
| 2008 | 672256522047614977 | NaN | NaN | 2015-12-03 03:30:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Mighty rare dogs here. Long smooth necks. Grea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672256522... | 8 | 10 | None | None | None | None | None |
| 2009 | 672254177670729728 | NaN | NaN | 2015-12-03 03:21:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Rolf. He's having the time of his life... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672254177... | 11 | 10 | Rolf | None | None | pupper | None |
| 2010 | 672248013293752320 | NaN | NaN | 2015-12-03 02:56:30 +0000 | <a href="http://twitter.com/download/iphone" r... | 10/10 for dog. 7/10 for cat. 12/10 for human. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672248013... | 10 | 10 | None | None | None | None | None |
| 2011 | 672245253877968896 | NaN | NaN | 2015-12-03 02:45:32 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Snickers. He's adorable. Also comes in t-... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672245253... | 12 | 10 | Snickers | None | None | None | None |
| 2012 | 672239279297454080 | NaN | NaN | 2015-12-03 02:21:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ridley. He doesn't know how to couch. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672239279... | 7 | 10 | Ridley | None | None | None | None |
| 2013 | 672231046314901505 | NaN | NaN | 2015-12-03 01:49:05 +0000 | <a href="http://twitter.com/download/iphone" r... | Exotic underwater dog here. Very shy. Wont ret... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672231046... | 5 | 10 | None | None | None | None | None |
| 2014 | 672222792075620352 | NaN | NaN | 2015-12-03 01:16:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cal. He's a Swedish Geriatric Cheddar.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672222792... | 9 | 10 | Cal | None | None | None | None |
| 2015 | 672205392827572224 | NaN | NaN | 2015-12-03 00:07:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Opal. He's a Royal John Coctostan. Rea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672205392... | 9 | 10 | Opal | None | None | pupper | None |
| 2016 | 672169685991993344 | NaN | NaN | 2015-12-02 21:45:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bradley. That is his sandwich. He carr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672169685... | 10 | 10 | Bradley | None | None | None | None |
| 2017 | 672160042234327040 | NaN | NaN | 2015-12-02 21:06:56 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bubba. He's a Titted Peebles Aorta. Ev... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672160042... | 8 | 10 | Bubba | None | None | pupper | None |
| 2018 | 672139350159835138 | NaN | NaN | 2015-12-02 19:44:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This pup has a heart on its ass and that is do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672139350... | 12 | 10 | None | None | None | None | None |
| 2019 | 672125275208069120 | NaN | NaN | 2015-12-02 18:48:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is just impressive I have nothing else to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672125275... | 11 | 10 | just | None | None | None | None |
| 2020 | 672095186491711488 | NaN | NaN | 2015-12-02 16:49:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tuco. That's the toast that killed his... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672095186... | 9 | 10 | Tuco | None | None | None | None |
| 2021 | 672082170312290304 | NaN | NaN | 2015-12-02 15:57:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Patch. He wants to be a Christmas tree... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672082170... | 11 | 10 | Patch | None | None | None | None |
| 2022 | 672068090318987265 | NaN | NaN | 2015-12-02 15:01:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Gizmo. He's upset because he's no... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/672068090... | 7 | 10 | Gizmo | None | None | None | None |
| 2023 | 671896809300709376 | NaN | NaN | 2015-12-02 03:40:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lola. She fell asleep on a piece of pi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671896809... | 10 | 10 | Lola | None | None | None | None |
| 2024 | 671891728106971137 | NaN | NaN | 2015-12-02 03:20:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mojo. Apparently he's too cute for a s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671891728... | 11 | 10 | Mojo | None | None | None | None |
| 2025 | 671882082306625538 | NaN | NaN | 2015-12-02 02:42:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Batdog. He's sleeping now but when he ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671882082... | 11 | 10 | Batdog | None | None | None | None |
| 2026 | 671879137494245376 | NaN | NaN | 2015-12-02 02:30:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Brad. He's a chubby lil pup. Doesn't r... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671879137... | 5 | 10 | Brad | None | None | None | None |
| 2027 | 671874878652489728 | NaN | NaN | 2015-12-02 02:13:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Mia. She was specifically told not get... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671874878... | 10 | 10 | Mia | None | None | None | None |
| 2028 | 671866342182637568 | NaN | NaN | 2015-12-02 01:39:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Dylan. He can use a fork but clearly can'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671866342... | 10 | 10 | Dylan | None | None | None | None |
| 2029 | 671855973984772097 | NaN | NaN | 2015-12-02 00:58:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Remarkable dog here. Walks on back legs really... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671855973... | 8 | 10 | None | None | None | None | None |
| 2030 | 671789708968640512 | NaN | NaN | 2015-12-01 20:35:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is space pup. He's very confused. Tries t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671789708... | 13 | 10 | space | None | None | None | None |
| 2031 | 671768281401958400 | NaN | NaN | 2015-12-01 19:10:13 +0000 | <a href="http://twitter.com/download/iphone" r... | When you try to recreate the scene from Lady &... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671768281... | 10 | 10 | None | None | None | None | None |
| 2032 | 671763349865160704 | NaN | NaN | 2015-12-01 18:50:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Mark. He's a good dog. Always rea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671763349... | 9 | 10 | Mark | None | None | None | None |
| 2033 | 671744970634719232 | NaN | NaN | 2015-12-01 17:37:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Very fit horned dog here. Looks powerful. Not ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671744970... | 6 | 10 | None | None | None | None | None |
| 2034 | 671743150407421952 | NaN | NaN | 2015-12-01 17:30:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Tuscaloosa Alcatraz named Jacob (Yac... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671743150... | 11 | 10 | a | None | None | None | None |
| 2035 | 671735591348891648 | NaN | NaN | 2015-12-01 17:00:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oscar. He's ready for Christmas. 11/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671735591... | 11 | 10 | Oscar | None | None | None | None |
| 2036 | 671729906628341761 | 6.715610e+17 | 4.196984e+09 | 2015-12-01 16:37:44 +0000 | <a href="http://twitter.com/download/iphone" r... | I'm just going to leave this one here as well.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671729906... | 13 | 10 | None | None | None | None | None |
| 2037 | 671561002136281088 | NaN | NaN | 2015-12-01 05:26:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is the best thing I've ever seen so sprea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671561002... | 13 | 10 | the | None | None | None | None |
| 2038 | 671550332464455680 | 6.715449e+17 | 4.196984e+09 | 2015-12-01 04:44:10 +0000 | <a href="http://twitter.com/download/iphone" r... | After 22 minutes of careful deliberation this ... | NaN | NaN | NaN | NaN | 1 | 10 | None | None | None | None | None |
| 2039 | 671547767500775424 | NaN | NaN | 2015-12-01 04:33:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Marley. She chews shoes then feels ext... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671547767... | 10 | 10 | Marley | None | None | None | None |
| 2040 | 671544874165002241 | NaN | NaN | 2015-12-01 04:22:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Interesting dog here. Very large. Purple. Mani... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671544874... | 6 | 10 | None | None | None | None | None |
| 2041 | 671542985629241344 | NaN | NaN | 2015-12-01 04:14:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is JD (stands for "just dog"). He's like ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671542985... | 10 | 10 | JD | None | None | None | None |
| 2042 | 671538301157904385 | NaN | NaN | 2015-12-01 03:56:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Baxter. He's very calm. Hasn't eaten i... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671538301... | 8 | 10 | Baxter | None | None | None | None |
| 2043 | 671536543010570240 | NaN | NaN | 2015-12-01 03:49:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Reginald. He's pondering what life wou... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671536543... | 9 | 10 | Reginald | None | None | None | None |
| 2044 | 671533943490011136 | NaN | NaN | 2015-12-01 03:39:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Super rare dog here. Spiffy mohawk. Sharp mout... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671533943... | 6 | 10 | None | None | None | None | None |
| 2045 | 671528761649688577 | NaN | NaN | 2015-12-01 03:18:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jax. He's in the middle of a serious conv... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671528761... | 10 | 10 | Jax | None | None | None | None |
| 2046 | 671520732782923777 | NaN | NaN | 2015-12-01 02:46:33 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Alejandro. He's an extremely seductive pu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671520732... | 10 | 10 | Alejandro | None | None | None | None |
| 2047 | 671518598289059840 | NaN | NaN | 2015-12-01 02:38:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scruffers. He's being violated on mult... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671518598... | 9 | 10 | Scruffers | None | None | None | None |
| 2048 | 671511350426865664 | NaN | NaN | 2015-12-01 02:09:16 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Hammond. He's just a wee lil pup.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671511350... | 8 | 10 | Hammond | None | None | None | None |
| 2049 | 671504605491109889 | NaN | NaN | 2015-12-01 01:42:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Charlie. He was just informed that dog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671504605... | 11 | 10 | Charlie | None | None | None | None |
| 2050 | 671497587707535361 | NaN | NaN | 2015-12-01 01:14:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pip. He is a ship captain. Many years ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671497587... | 11 | 10 | Pip | None | None | None | None |
| 2051 | 671488513339211776 | NaN | NaN | 2015-12-01 00:38:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Julius. He's a cool dog. Carries seash... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671488513... | 8 | 10 | Julius | None | None | None | None |
| 2052 | 671486386088865792 | NaN | NaN | 2015-12-01 00:30:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Malcolm. He just saw a spider. 10/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671486386... | 10 | 10 | Malcolm | None | None | None | None |
| 2053 | 671485057807351808 | NaN | NaN | 2015-12-01 00:24:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Penelope. She is a white Macadamias Duode... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671485057... | 11 | 10 | Penelope | None | None | None | None |
| 2054 | 671390180817915904 | NaN | NaN | 2015-11-30 18:07:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Striped dog here. Having fun playing on back. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671390180... | 7 | 10 | None | None | None | None | None |
| 2055 | 671362598324076544 | NaN | NaN | 2015-11-30 16:18:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tanner. He accidentally dropped all hi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671362598... | 11 | 10 | Tanner | None | None | None | None |
| 2056 | 671357843010908160 | NaN | NaN | 2015-11-30 15:59:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Tfw she says hello from the other side. 9/10 h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671357843... | 9 | 10 | None | None | None | None | None |
| 2057 | 671355857343524864 | NaN | NaN | 2015-11-30 15:51:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lou. He's a Petrarch Sunni Pinto. Well... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671355857... | 10 | 10 | Lou | None | None | None | None |
| 2058 | 671347597085433856 | NaN | NaN | 2015-11-30 15:18:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lola. She was not fully prepared for t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671347597... | 9 | 10 | Lola | None | None | None | None |
| 2059 | 671186162933985280 | NaN | NaN | 2015-11-30 04:37:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sparky. That's his pancake now. He wil... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671186162... | 10 | 10 | Sparky | None | None | None | None |
| 2060 | 671182547775299584 | NaN | NaN | 2015-11-30 04:22:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This pup holds the secrets of the universe in ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671182547... | 12 | 10 | None | None | None | None | None |
| 2061 | 671166507850801152 | NaN | NaN | 2015-11-30 03:18:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Herm. It's his first day of potty trai... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671166507... | 10 | 10 | Herm | None | None | None | None |
| 2062 | 671163268581498880 | NaN | NaN | 2015-11-30 03:06:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Pack of horned dogs here. Very team-oriented b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671163268... | 8 | 10 | None | None | None | None | None |
| 2063 | 671159727754231808 | NaN | NaN | 2015-11-30 02:52:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Anthony. He just finished up his maste... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671159727... | 5 | 10 | Anthony | None | None | None | None |
| 2064 | 671154572044468225 | NaN | NaN | 2015-11-30 02:31:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Holly. She's trying to teach small human-... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671154572... | 11 | 10 | Holly | None | None | None | None |
| 2065 | 671151324042559489 | NaN | NaN | 2015-11-30 02:18:39 +0000 | <a href="http://twitter.com/download/iphone" r... | *struggling to breathe properly* 12/10 https:/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671151324... | 12 | 10 | None | None | None | None | None |
| 2066 | 671147085991960577 | NaN | NaN | 2015-11-30 02:01:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Helvetica Listerine named Rufus. Thi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671147085... | 9 | 10 | a | None | None | None | None |
| 2067 | 671141549288370177 | NaN | NaN | 2015-11-30 01:39:49 +0000 | <a href="http://twitter.com/download/iphone" r... | Neat pup here. Enjoys lettuce. Long af ears. S... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671141549... | 9 | 10 | None | None | None | None | None |
| 2068 | 671138694582165504 | NaN | NaN | 2015-11-30 01:28:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Me running from commitment. 10/10 https://t.co... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671138694... | 10 | 10 | None | None | None | None | None |
| 2069 | 671134062904504320 | NaN | NaN | 2015-11-30 01:10:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Clarence. He's a western Alkaline... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671134062... | 8 | 10 | Clarence | None | None | None | None |
| 2070 | 671122204919246848 | NaN | NaN | 2015-11-30 00:22:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Two miniature golden retrievers here. Webbed p... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671122204... | 4 | 10 | None | None | None | None | None |
| 2071 | 671115716440031232 | NaN | NaN | 2015-11-29 23:57:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Phred. He isn't steering, looking at the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671115716... | 6 | 10 | Phred | None | None | None | None |
| 2072 | 671109016219725825 | NaN | NaN | 2015-11-29 23:30:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Toby. He asked for chocolate cake for ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/671109016... | 8 | 10 | Toby | None | None | None | None |
| 2073 | 670995969505435648 | NaN | NaN | 2015-11-29 16:01:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Yea I can't handle this job anymore your dogs ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670995969... | 12 | 10 | None | None | None | None | None |
| 2074 | 670842764863651840 | NaN | NaN | 2015-11-29 05:52:33 +0000 | <a href="http://twitter.com/download/iphone" r... | After so many requests... here you go.\n\nGood... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670842764... | 420 | 10 | None | None | None | None | None |
| 2075 | 670840546554966016 | NaN | NaN | 2015-11-29 05:43:44 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Colby. He's that one cool friend that get... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670840546... | 10 | 10 | Colby | None | None | None | None |
| 2076 | 670838202509447168 | NaN | NaN | 2015-11-29 05:34:25 +0000 | <a href="http://twitter.com/download/iphone" r... | Pink dogs here. Unreasonably long necks. Left ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670838202... | 4 | 10 | None | None | None | None | None |
| 2077 | 670833812859932673 | NaN | NaN | 2015-11-29 05:16:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jett. He is unimpressed by flower. 7/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670833812... | 7 | 10 | Jett | None | None | None | None |
| 2078 | 670832455012716544 | NaN | NaN | 2015-11-29 05:11:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Amy. She is Queen Starburst. 10/10 une... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670832455... | 10 | 10 | Amy | None | None | None | None |
| 2079 | 670826280409919488 | NaN | NaN | 2015-11-29 04:47:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Scary dog here. Too many legs. Extra tail. Not... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670826280... | 2 | 10 | None | None | None | None | None |
| 2080 | 670823764196741120 | NaN | NaN | 2015-11-29 04:37:03 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Remington. He's a man dime. 12/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670823764... | 12 | 10 | Remington | None | None | None | None |
| 2081 | 670822709593571328 | NaN | NaN | 2015-11-29 04:32:51 +0000 | <a href="http://twitter.com/download/iphone" r... | Can't do better than this lol. 10/10 for the o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670822709... | 10 | 10 | None | None | None | None | None |
| 2082 | 670815497391357952 | NaN | NaN | 2015-11-29 04:04:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sage. He likes to burn shit. 10/10 htt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670815497... | 10 | 10 | Sage | None | None | None | None |
| 2083 | 670811965569282048 | NaN | NaN | 2015-11-29 03:50:10 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Maggie. She enjoys her stick in the yard.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670811965... | 10 | 10 | Maggie | None | None | None | None |
| 2084 | 670807719151067136 | NaN | NaN | 2015-11-29 03:33:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Andy. He can balance on one foot,... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670807719... | 11 | 10 | Andy | None | None | None | None |
| 2085 | 670804601705242624 | NaN | NaN | 2015-11-29 03:20:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Mason. He's a total frat boy. Pretends to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670804601... | 10 | 10 | Mason | None | None | None | None |
| 2086 | 670803562457407488 | NaN | NaN | 2015-11-29 03:16:46 +0000 | <a href="http://twitter.com/download/iphone" r... | I would do radical things in the name of Dog G... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670803562... | 10 | 10 | None | None | None | None | None |
| 2087 | 670797304698376195 | NaN | NaN | 2015-11-29 02:51:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Trigger. He was minding his own busine... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670797304... | 11 | 10 | Trigger | None | None | None | None |
| 2088 | 670792680469889025 | NaN | NaN | 2015-11-29 02:33:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Antony. He's a Sheraton Tetrahedron. S... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670792680... | 7 | 10 | Antony | None | None | None | None |
| 2089 | 670789397210615808 | NaN | NaN | 2015-11-29 02:20:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Two obedient dogs here. Left one has extra leg... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670789397... | 9 | 10 | None | None | None | None | None |
| 2090 | 670786190031921152 | NaN | NaN | 2015-11-29 02:07:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Creg. You offered him a ride to work b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670786190... | 8 | 10 | Creg | None | None | None | None |
| 2091 | 670783437142401025 | NaN | NaN | 2015-11-29 01:56:48 +0000 | <a href="http://twitter.com/download/iphone" r... | Flamboyant pup here. Probably poisonous. Won't... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670783437... | 1 | 10 | None | None | None | None | None |
| 2092 | 670782429121134593 | NaN | NaN | 2015-11-29 01:52:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This dude slaps your girl's ass what do you do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670782429... | 5 | 10 | None | None | None | None | None |
| 2093 | 670780561024270336 | NaN | NaN | 2015-11-29 01:45:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Traviss. He has no ears. Two rare dogs... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670780561... | 7 | 10 | Traviss | None | None | None | None |
| 2094 | 670778058496974848 | NaN | NaN | 2015-11-29 01:35:26 +0000 | <a href="http://twitter.com/download/iphone" r... | "To bone or not to bone?"\n10/10 https://t.co/... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670778058... | 10 | 10 | None | None | None | None | None |
| 2095 | 670764103623966721 | NaN | NaN | 2015-11-29 00:39:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Vincent. He's a wild Adderall Cayenne. Sh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670764103... | 10 | 10 | Vincent | None | None | None | None |
| 2096 | 670755717859713024 | NaN | NaN | 2015-11-29 00:06:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Gin & Tonic. They're having a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670755717... | 9 | 10 | Gin | None | None | None | None |
| 2097 | 670733412878163972 | NaN | NaN | 2015-11-28 22:38:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jerry. He's a great listener. Low main... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670733412... | 8 | 10 | Jerry | None | None | None | None |
| 2098 | 670727704916926465 | NaN | NaN | 2015-11-28 22:15:21 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeffrie. He's a handheld pup. Excellen... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670727704... | 10 | 10 | Jeffrie | None | None | None | None |
| 2099 | 670717338665226240 | NaN | NaN | 2015-11-28 21:34:09 +0000 | <a href="http://twitter.com/download/iphone" r... | *screams for a little bit and then crumples to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670717338... | 12 | 10 | None | None | None | None | None |
| 2100 | 670704688707301377 | NaN | NaN | 2015-11-28 20:43:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Danny. He's too good to look at the road ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670704688... | 6 | 10 | Danny | None | None | None | None |
| 2101 | 670691627984359425 | NaN | NaN | 2015-11-28 19:51:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ester. He has a cocaine problem. This ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670691627... | 8 | 10 | Ester | None | None | None | None |
| 2102 | 670679630144274432 | NaN | NaN | 2015-11-28 19:04:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pluto. He's holding little waddling do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670679630... | 8 | 10 | Pluto | None | None | None | None |
| 2103 | 670676092097810432 | NaN | NaN | 2015-11-28 18:50:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bloo. He's a Westminster Cîroc. Doesn'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670676092... | 8 | 10 | Bloo | None | None | None | None |
| 2104 | 670668383499735048 | NaN | NaN | 2015-11-28 18:19:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Phineas. He's a magical dog. Only appe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670668383... | 10 | 10 | Phineas | None | None | None | None |
| 2105 | 670474236058800128 | NaN | NaN | 2015-11-28 05:28:09 +0000 | <a href="http://twitter.com/download/iphone" r... | Honor to rate this dog. Great teeth. Nice horn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670474236... | 10 | 10 | None | None | None | None | None |
| 2106 | 670468609693655041 | NaN | NaN | 2015-11-28 05:05:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Edd. He's a Czechoslovakian Googolplex... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670468609... | 10 | 10 | Edd | None | None | None | None |
| 2107 | 670465786746662913 | NaN | NaN | 2015-11-28 04:54:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Silly dog here. Wearing bunny ears. Nice long ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670465786... | 7 | 10 | None | None | None | None | None |
| 2108 | 670452855871037440 | NaN | NaN | 2015-11-28 04:03:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog can't see its haters. 11/10 https://t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670452855... | 11 | 10 | None | None | None | None | None |
| 2109 | 670449342516494336 | NaN | NaN | 2015-11-28 03:49:14 +0000 | <a href="http://twitter.com/download/iphone" r... | Vibrant dog here. Fabulous tail. Only 2 legs t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670449342... | 5 | 10 | None | None | None | None | None |
| 2110 | 670444955656130560 | NaN | NaN | 2015-11-28 03:31:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Paull. He just stubbed his toe. 10/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670444955... | 10 | 10 | Paull | None | None | None | None |
| 2111 | 670442337873600512 | NaN | NaN | 2015-11-28 03:21:24 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Koda. He's large. Looks very soft. Great ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670442337... | 11 | 10 | Koda | None | None | None | None |
| 2112 | 670435821946826752 | NaN | NaN | 2015-11-28 02:55:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Two unbelievably athletic dogs here. Great for... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670435821... | 10 | 10 | None | None | None | None | None |
| 2113 | 670434127938719744 | NaN | NaN | 2015-11-28 02:48:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Hank and Sully. Hank is very proud of the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670434127... | 11 | 10 | Hank | None | None | None | None |
| 2114 | 670433248821026816 | NaN | NaN | 2015-11-28 02:45:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sam. He's trying to escape the inordin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670433248... | 10 | 10 | Sam | None | None | None | None |
| 2115 | 670428280563085312 | NaN | NaN | 2015-11-28 02:25:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Willy. He's millennial af. 11/10 https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670428280... | 11 | 10 | Willy | None | None | None | None |
| 2116 | 670427002554466305 | NaN | NaN | 2015-11-28 02:20:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Deciduous Trimester mix named Spork.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670427002... | 9 | 10 | a | None | None | None | None |
| 2117 | 670421925039075328 | NaN | NaN | 2015-11-28 02:00:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Herb. 12/10 https://t.co/tLRyYvCci3 | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670421925... | 12 | 10 | Herb | None | None | None | None |
| 2118 | 670420569653809152 | NaN | NaN | 2015-11-28 01:54:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Damon. The newest presidential candida... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670420569... | 10 | 10 | Damon | None | None | None | None |
| 2119 | 670417414769758208 | NaN | NaN | 2015-11-28 01:42:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Sharp dog here. Introverted. Loves purple. Not... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670417414... | 6 | 10 | None | None | None | None | None |
| 2120 | 670411370698022913 | NaN | NaN | 2015-11-28 01:18:21 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Scooter. He's ready for his first day of ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670411370... | 12 | 10 | Scooter | None | None | None | None |
| 2121 | 670408998013820928 | NaN | NaN | 2015-11-28 01:08:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Peanut. He was the World Table Tennis ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670408998... | 10 | 10 | Peanut | None | None | None | None |
| 2122 | 670403879788544000 | NaN | NaN | 2015-11-28 00:48:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Nigel. He accidentally popped his ball... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670403879... | 10 | 10 | Nigel | None | None | None | None |
| 2123 | 670385711116361728 | NaN | NaN | 2015-11-27 23:36:23 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Larry. He's a Panoramic Benzoate. Can sho... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670385711... | 8 | 10 | Larry | None | None | None | None |
| 2124 | 670374371102445568 | NaN | NaN | 2015-11-27 22:51:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Daisy. She's rebellious. Full of teen ang... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670374371... | 12 | 10 | Daisy | None | None | None | None |
| 2125 | 670361874861563904 | NaN | NaN | 2015-11-27 22:01:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Rich Mahogany Seltzer named Cherokee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670361874... | 9 | 10 | a | None | None | None | None |
| 2126 | 670338931251150849 | NaN | NaN | 2015-11-27 20:30:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Butters. He's not ready for Thanksgivi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670338931... | 10 | 10 | Butters | None | None | None | None |
| 2127 | 670319130621435904 | NaN | NaN | 2015-11-27 19:11:49 +0000 | <a href="http://twitter.com/download/iphone" r... | AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670319130... | 11 | 10 | None | None | None | None | None |
| 2128 | 670303360680108032 | NaN | NaN | 2015-11-27 18:09:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Speckled Cauliflower Yosemite named ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670303360... | 9 | 10 | a | None | None | None | None |
| 2129 | 670290420111441920 | NaN | NaN | 2015-11-27 17:17:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sandra. She's going skydiving. Nice ad... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670290420... | 11 | 10 | Sandra | None | None | None | None |
| 2130 | 670093938074779648 | NaN | NaN | 2015-11-27 04:16:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Wally. He's a Flaccid Mitochondria. Go... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670093938... | 9 | 10 | Wally | None | None | None | None |
| 2131 | 670086499208155136 | NaN | NaN | 2015-11-27 03:47:25 +0000 | <a href="http://twitter.com/download/iphone" r... | "Hi yes this is dog. I can't help with that s-... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670086499... | 10 | 10 | None | None | None | None | None |
| 2132 | 670079681849372674 | NaN | NaN | 2015-11-27 03:20:20 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Fabio. He's a wonderful pup. Can't stay a... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670079681... | 10 | 10 | Fabio | None | None | None | None |
| 2133 | 670073503555706880 | NaN | NaN | 2015-11-27 02:55:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Winston. He wants to be a power drill. Ve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670073503... | 10 | 10 | Winston | None | None | None | None |
| 2134 | 670069087419133954 | NaN | NaN | 2015-11-27 02:38:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Randall. He's from Chernobyl. Built pl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670069087... | 5 | 10 | Randall | None | None | None | None |
| 2135 | 670061506722140161 | NaN | NaN | 2015-11-27 02:08:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Liam. He has a particular set of skill... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670061506... | 11 | 10 | Liam | None | None | None | None |
| 2136 | 670055038660800512 | NaN | NaN | 2015-11-27 01:42:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tommy. He's a cool dog. Hard not to st... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670055038... | 3 | 10 | Tommy | None | None | None | None |
| 2137 | 670046952931721218 | NaN | NaN | 2015-11-27 01:10:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ben & Carson. It's impossible for ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670046952... | 11 | 10 | Ben | None | None | None | None |
| 2138 | 670040295598354432 | NaN | NaN | 2015-11-27 00:43:49 +0000 | <a href="http://twitter.com/download/iphone" r... | 😂😂😂 10/10 for the dog and the owner https://t.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670040295... | 10 | 10 | None | None | None | None | None |
| 2139 | 670037189829525505 | NaN | NaN | 2015-11-27 00:31:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Awesome dog here. Not sure where it is tho. Sp... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670037189... | 5 | 10 | None | None | None | None | None |
| 2140 | 670003130994700288 | NaN | NaN | 2015-11-26 22:16:09 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Raphael. He is a Baskerville Conquista... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/670003130... | 10 | 10 | Raphael | None | None | None | None |
| 2141 | 669993076832759809 | NaN | NaN | 2015-11-26 21:36:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Zoey. Her dreams of becoming a hippo b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669993076... | 9 | 10 | Zoey | None | None | None | None |
| 2142 | 669972011175813120 | NaN | NaN | 2015-11-26 20:12:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see really big dog cuddling smaller do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669972011... | 10 | 10 | None | None | None | None | None |
| 2143 | 669970042633789440 | NaN | NaN | 2015-11-26 20:04:40 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Julio. He was one of the original Ring... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669970042... | 10 | 10 | Julio | None | None | None | None |
| 2144 | 669942763794931712 | NaN | NaN | 2015-11-26 18:16:16 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Andru. He made his very own lacrosse s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669942763... | 11 | 10 | Andru | None | None | None | None |
| 2145 | 669926384437997569 | NaN | NaN | 2015-11-26 17:11:11 +0000 | <a href="http://twitter.com/download/iphone" r... | I've never seen a dog so genuinely happy about... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669926384... | 12 | 10 | None | None | None | None | None |
| 2146 | 669923323644657664 | NaN | NaN | 2015-11-26 16:59:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a spotted Lipitor Rumpelstiltskin name... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669923323... | 10 | 10 | a | None | None | None | None |
| 2147 | 669753178989142016 | NaN | NaN | 2015-11-26 05:42:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Chester. He just ate a lot and now he can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669753178... | 10 | 10 | Chester | None | None | None | None |
| 2148 | 669749430875258880 | NaN | NaN | 2015-11-26 05:28:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Clarence. Clarence thought he saw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669749430... | 8 | 10 | Clarence | None | None | None | None |
| 2149 | 669684865554620416 | 6.693544e+17 | 4.196984e+09 | 2015-11-26 01:11:28 +0000 | <a href="http://twitter.com/download/iphone" r... | After countless hours of research and hundreds... | NaN | NaN | NaN | NaN | 11 | 10 | None | None | None | None | None |
| 2150 | 669683899023405056 | NaN | NaN | 2015-11-26 01:07:38 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kloey. Her mother was a unicorn. 10/10... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669683899... | 10 | 10 | Kloey | None | None | None | None |
| 2151 | 669682095984410625 | NaN | NaN | 2015-11-26 01:00:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Louie. He just pounded that bottle of win... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669682095... | 9 | 10 | Louie | None | None | None | None |
| 2152 | 669680153564442624 | NaN | NaN | 2015-11-26 00:52:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shawwn. He's a Turkish Gangrene Robitu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669680153... | 8 | 10 | Shawwn | None | None | None | None |
| 2153 | 669661792646373376 | NaN | NaN | 2015-11-25 23:39:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a brave dog. Excellent free climber. T... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669661792... | 5 | 10 | a | None | None | None | None |
| 2154 | 669625907762618368 | NaN | NaN | 2015-11-25 21:17:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Penny. She's having fun AND being safe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669625907... | 12 | 10 | Penny | None | None | None | None |
| 2155 | 669603084620980224 | NaN | NaN | 2015-11-25 19:46:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Very human-like. Cute overbite smile *finger t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669603084... | 10 | 10 | None | None | None | None | None |
| 2156 | 669597912108789760 | NaN | NaN | 2015-11-25 19:25:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Skye. He is a Bretwaldian Altostratus.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669597912... | 10 | 10 | Skye | None | None | None | None |
| 2157 | 669583744538451968 | NaN | NaN | 2015-11-25 18:29:39 +0000 | <a href="http://twitter.com/download/iphone" r... | Special dog here. Pretty big. Neck kinda long ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669583744... | 6 | 10 | None | None | None | None | None |
| 2158 | 669573570759163904 | NaN | NaN | 2015-11-25 17:49:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Linda. She just looked up and saw you ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669573570... | 10 | 10 | Linda | None | None | None | None |
| 2159 | 669571471778410496 | NaN | NaN | 2015-11-25 17:40:53 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Keith. He's had 13 DUIs. 7/10 that's t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669571471... | 7 | 10 | Keith | None | None | None | None |
| 2160 | 669567591774625800 | NaN | NaN | 2015-11-25 17:25:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Kollin. He's a Parakeetian Badminton from... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669567591... | 9 | 10 | Kollin | None | None | None | None |
| 2161 | 669564461267722241 | NaN | NaN | 2015-11-25 17:13:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Coriander Baton Rouge named Alfredo.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669564461... | 10 | 10 | a | None | None | None | None |
| 2162 | 669393256313184256 | NaN | NaN | 2015-11-25 05:52:43 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Ronduh. She's a Finnish Checkered Blitzkr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669393256... | 10 | 10 | Ronduh | None | None | None | None |
| 2163 | 669375718304980992 | NaN | NaN | 2015-11-25 04:43:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Billl. He's trying to be a ghost but h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669375718... | 6 | 10 | Billl | None | None | None | None |
| 2164 | 669371483794317312 | NaN | NaN | 2015-11-25 04:26:12 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Oliviér. He's a Baptist Hindquarter. A... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669371483... | 10 | 10 | Oliviér | None | None | None | None |
| 2165 | 669367896104181761 | NaN | NaN | 2015-11-25 04:11:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chip. Chip's pretending to be choked. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669367896... | 10 | 10 | Chip | None | None | None | None |
| 2166 | 669363888236994561 | NaN | NaN | 2015-11-25 03:56:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a Gingivitis Pumpernickel named Z... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669363888... | 10 | 10 | None | None | None | None | None |
| 2167 | 669359674819481600 | NaN | NaN | 2015-11-25 03:39:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Saydee. She's a Rochester Ecclesiastical... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669359674... | 11 | 10 | Saydee | None | None | None | None |
| 2168 | 669354382627049472 | NaN | NaN | 2015-11-25 03:18:15 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Dug. Dug fucken loves peaches. 8/10 https... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669354382... | 8 | 10 | Dug | None | None | None | None |
| 2169 | 669353438988365824 | 6.678065e+17 | 4.196984e+09 | 2015-11-25 03:14:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tessa. She is also very pleased after ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669353438... | 10 | 10 | Tessa | None | None | None | None |
| 2170 | 669351434509529089 | NaN | NaN | 2015-11-25 03:06:32 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Sully. He's a Leviticus Galapagos. Ver... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669351434... | 10 | 10 | Sully | None | None | None | None |
| 2171 | 669328503091937280 | NaN | NaN | 2015-11-25 01:35:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kirk. He just saw a bacon wrapped tenn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669328503... | 12 | 10 | Kirk | None | None | None | None |
| 2172 | 669327207240699904 | NaN | NaN | 2015-11-25 01:30:16 +0000 | <a href="http://twitter.com/download/iphone" r... | Just got home from college. Dis my dog. She do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669327207... | 13 | 10 | None | None | None | None | None |
| 2173 | 669324657376567296 | NaN | NaN | 2015-11-25 01:20:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Ralf. He's a miniature Buick DiCaprio. Ca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669324657... | 11 | 10 | Ralf | None | None | None | None |
| 2174 | 669216679721873412 | NaN | NaN | 2015-11-24 18:11:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clarq. He's a golden Quetzalcoatl. Cla... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669216679... | 8 | 10 | Clarq | None | None | None | None |
| 2175 | 669214165781868544 | NaN | NaN | 2015-11-24 18:01:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jaspers. He is a northeastern Gillette... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669214165... | 10 | 10 | Jaspers | None | None | None | None |
| 2176 | 669203728096960512 | NaN | NaN | 2015-11-24 17:19:36 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Samsom. He is sexually confused. Reall... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669203728... | 9 | 10 | Samsom | None | None | None | None |
| 2177 | 669037058363662336 | NaN | NaN | 2015-11-24 06:17:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have Pancho and Peaches. Pancho is a C... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669037058... | 10 | 10 | None | None | None | None | None |
| 2178 | 669015743032369152 | NaN | NaN | 2015-11-24 04:52:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Super rare dog right here guys. Doesn't bark. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669015743... | 10 | 10 | None | None | None | None | None |
| 2179 | 669006782128353280 | NaN | NaN | 2015-11-24 04:17:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tucker. He is 100% ready for the sport... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669006782... | 12 | 10 | Tucker | None | None | None | None |
| 2180 | 669000397445533696 | NaN | NaN | 2015-11-24 03:51:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Terrance. He's being yelled at because he... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/669000397... | 11 | 10 | Terrance | None | None | None | None |
| 2181 | 668994913074286592 | NaN | NaN | 2015-11-24 03:29:51 +0000 | <a href="http://twitter.com/download/iphone" r... | Two gorgeous pups here. Both have cute fake ho... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668994913... | 5 | 10 | None | None | None | None | None |
| 2182 | 668992363537309700 | NaN | NaN | 2015-11-24 03:19:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Harrison. He braves the snow like a ch... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668992363... | 8 | 10 | Harrison | None | None | None | None |
| 2183 | 668989615043424256 | NaN | NaN | 2015-11-24 03:08:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bernie. He's taking his Halloween cost... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668989615... | 3 | 10 | Bernie | None | None | None | None |
| 2184 | 668988183816871936 | NaN | NaN | 2015-11-24 03:03:06 +0000 | <a href="http://twitter.com/download/iphone" r... | Honor to rate this dog. Lots of fur on him. Tw... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668988183... | 7 | 10 | None | None | None | None | None |
| 2185 | 668986018524233728 | NaN | NaN | 2015-11-24 02:54:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ruby. She's a Bimmington Fettuccini. O... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668986018... | 9 | 10 | Ruby | None | None | None | None |
| 2186 | 668981893510119424 | NaN | NaN | 2015-11-24 02:38:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Unique dog here. Oddly shaped tail. Long pink ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668981893... | 4 | 10 | None | None | None | None | None |
| 2187 | 668979806671884288 | NaN | NaN | 2015-11-24 02:29:49 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Chaz. He's an X Games half pipe supers... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668979806... | 12 | 10 | Chaz | None | None | None | None |
| 2188 | 668975677807423489 | NaN | NaN | 2015-11-24 02:13:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeremy. He hasn't grown into his skin ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668975677... | 11 | 10 | Jeremy | None | None | None | None |
| 2189 | 668967877119254528 | 6.689207e+17 | 2.143566e+07 | 2015-11-24 01:42:25 +0000 | <a href="http://twitter.com/download/iphone" r... | 12/10 good shit Bubka\n@wane15 | NaN | NaN | NaN | NaN | 12 | 10 | None | None | None | None | None |
| 2190 | 668960084974809088 | NaN | NaN | 2015-11-24 01:11:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Jaycob. He got scared of the vacuum. Hide... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668960084... | 10 | 10 | Jaycob | None | None | None | None |
| 2191 | 668955713004314625 | NaN | NaN | 2015-11-24 00:54:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Slovakian Helter Skelter Feta named ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668955713... | 10 | 10 | a | None | None | None | None |
| 2192 | 668932921458302977 | NaN | NaN | 2015-11-23 23:23:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Herald. He likes to swing. Subtle tong... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668932921... | 9 | 10 | Herald | None | None | None | None |
| 2193 | 668902994700836864 | NaN | NaN | 2015-11-23 21:24:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Lambeau. He's a Whistling Haiku from the ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668902994... | 11 | 10 | Lambeau | None | None | None | None |
| 2194 | 668892474547511297 | NaN | NaN | 2015-11-23 20:42:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ruffles. He is an Albanian Shoop Da Wh... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668892474... | 11 | 10 | Ruffles | None | None | None | None |
| 2195 | 668872652652679168 | NaN | NaN | 2015-11-23 19:24:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Amélie. She is a confident white colle... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668872652... | 11 | 10 | Amélie | None | None | None | None |
| 2196 | 668852170888998912 | NaN | NaN | 2015-11-23 18:02:38 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Bobb. Bobb is a Golden High Fescu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668852170... | 11 | 10 | Bobb | None | None | None | None |
| 2197 | 668826086256599040 | NaN | NaN | 2015-11-23 16:18:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Banditt. He is a brown LaBeouf retriev... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668826086... | 10 | 10 | Banditt | None | None | None | None |
| 2198 | 668815180734689280 | NaN | NaN | 2015-11-23 15:35:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a wild Toblerone from Papua New Guinea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668815180... | 7 | 10 | a | None | None | None | None |
| 2199 | 668779399630725120 | NaN | NaN | 2015-11-23 13:13:28 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Kevon. He is not physically or mentall... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668779399... | 10 | 10 | Kevon | None | None | None | None |
| 2200 | 668655139528511488 | NaN | NaN | 2015-11-23 04:59:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Winifred. He is a Papyrus Hydrang... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668655139... | 11 | 10 | Winifred | None | None | None | None |
| 2201 | 668645506898350081 | NaN | NaN | 2015-11-23 04:21:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Incredibly rare dog here. Good at bipedalism. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668645506... | 11 | 10 | None | None | None | None | None |
| 2202 | 668643542311546881 | NaN | NaN | 2015-11-23 04:13:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Fascinating dog here. Loves beach. Oddly long ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668643542... | 3 | 10 | None | None | None | None | None |
| 2203 | 668641109086707712 | NaN | NaN | 2015-11-23 04:03:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Hanz. He heard some thunder. 10/10 https:... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668641109... | 10 | 10 | Hanz | None | None | None | None |
| 2204 | 668636665813057536 | NaN | NaN | 2015-11-23 03:46:18 +0000 | <a href="http://twitter.com/download/iphone" r... | This is an Irish Rigatoni terrier named Berta.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668636665... | 10 | 10 | an | None | None | None | None |
| 2205 | 668633411083464705 | NaN | NaN | 2015-11-23 03:33:22 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Churlie. He likes bagels. 10/10 https:... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668633411... | 10 | 10 | Churlie | None | None | None | None |
| 2206 | 668631377374486528 | NaN | NaN | 2015-11-23 03:25:17 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Zeek. He is a grey Cumulonimbus. Zeek is ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668631377... | 5 | 10 | Zeek | None | None | None | None |
| 2207 | 668627278264475648 | NaN | NaN | 2015-11-23 03:09:00 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Timofy. He's a pilot for Southwest. It... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668627278... | 9 | 10 | Timofy | None | None | None | None |
| 2208 | 668625577880875008 | NaN | NaN | 2015-11-23 03:02:14 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Maks. Maks just noticed something wasn... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668625577... | 10 | 10 | Maks | None | None | None | None |
| 2209 | 668623201287675904 | NaN | NaN | 2015-11-23 02:52:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jomathan. He is not thrilled about the... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668623201... | 10 | 10 | Jomathan | None | None | None | None |
| 2210 | 668620235289837568 | NaN | NaN | 2015-11-23 02:41:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Kallie. There was a tornado in th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668620235... | 10 | 10 | Kallie | None | None | None | None |
| 2211 | 668614819948453888 | NaN | NaN | 2015-11-23 02:19:29 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a horned dog. Much grace. Can jump ove... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668614819... | 7 | 10 | a | None | None | None | None |
| 2212 | 668587383441514497 | NaN | NaN | 2015-11-23 00:30:28 +0000 | <a href="http://vine.co" rel="nofollow">Vine -... | Never forget this vine. You will not stop watc... | NaN | NaN | NaN | https://vine.co/v/ea0OwvPTx9l | 13 | 10 | the | None | None | None | None |
| 2213 | 668567822092664832 | NaN | NaN | 2015-11-22 23:12:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Marvin. He can tie a bow tie better th... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668567822... | 11 | 10 | Marvin | None | None | None | None |
| 2214 | 668544745690562560 | NaN | NaN | 2015-11-22 21:41:02 +0000 | <a href="http://twitter.com/download/iphone" r... | It is an honor to rate this pup. He is a Snork... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668544745... | 10 | 10 | None | None | None | None | None |
| 2215 | 668542336805281792 | NaN | NaN | 2015-11-22 21:31:28 +0000 | <a href="http://twitter.com/download/iphone" r... | There's a lot going on here but in my honest o... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668542336... | 10 | 10 | None | None | None | None | None |
| 2216 | 668537837512433665 | NaN | NaN | 2015-11-22 21:13:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Spark. He's nervous. Other dog hasn't ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668537837... | 8 | 10 | Spark | None | None | None | None |
| 2217 | 668528771708952576 | NaN | NaN | 2015-11-22 20:37:34 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gòrdón. He enjoys his razberrita by po... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668528771... | 12 | 10 | Gòrdón | None | None | None | None |
| 2218 | 668507509523615744 | NaN | NaN | 2015-11-22 19:13:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Birmingham Quagmire named Chuk. Love... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668507509... | 10 | 10 | a | None | None | None | None |
| 2219 | 668496999348633600 | NaN | NaN | 2015-11-22 18:31:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jo. Jo is a Swedish Queso. Tongue bigg... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668496999... | 8 | 10 | Jo | None | None | None | None |
| 2220 | 668484198282485761 | NaN | NaN | 2015-11-22 17:40:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Good teamwork between these dogs. One is on lo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668484198... | 9 | 10 | None | None | None | None | None |
| 2221 | 668480044826800133 | NaN | NaN | 2015-11-22 17:23:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to DayZ. She is definitely stuck on ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668480044... | 11 | 10 | DayZ | None | None | None | None |
| 2222 | 668466899341221888 | NaN | NaN | 2015-11-22 16:31:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a mother dog caring for her pups. Snaz... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668466899... | 4 | 10 | a | None | None | None | None |
| 2223 | 668297328638447616 | NaN | NaN | 2015-11-22 05:17:54 +0000 | <a href="http://twitter.com/download/iphone" r... | 2 rare dogs. They waddle (v inefficient). Some... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668297328... | 9 | 10 | None | None | None | None | None |
| 2224 | 668291999406125056 | NaN | NaN | 2015-11-22 04:56:43 +0000 | <a href="http://twitter.com/download/iphone" r... | I can't do better than he did. 10/10 https://t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668291999... | 10 | 10 | None | None | None | None | None |
| 2225 | 668286279830867968 | NaN | NaN | 2015-11-22 04:33:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Rusty. Rusty's dreaming of a world where ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668286279... | 11 | 10 | Rusty | None | None | None | None |
| 2226 | 668274247790391296 | NaN | NaN | 2015-11-22 03:46:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Sophie. Her son just got in the car to le... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668274247... | 10 | 10 | Sophie | None | None | None | None |
| 2227 | 668268907921326080 | NaN | NaN | 2015-11-22 03:24:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have an Azerbaijani Buttermilk named G... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668268907... | 10 | 10 | None | None | None | None | None |
| 2228 | 668256321989451776 | NaN | NaN | 2015-11-22 02:34:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jareld. Jareld rules these waters. Lad... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668256321... | 13 | 10 | Jareld | None | None | None | None |
| 2229 | 668248472370458624 | NaN | NaN | 2015-11-22 02:03:45 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Bisquick. He is a Brown Douglass ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668248472... | 8 | 10 | Bisquick | None | None | None | None |
| 2230 | 668237644992782336 | NaN | NaN | 2015-11-22 01:20:44 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Torque. He served his nickel. Better n... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668237644... | 10 | 10 | Torque | None | None | None | None |
| 2231 | 668226093875376128 | NaN | NaN | 2015-11-22 00:34:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Sneaky dog here. Tuba player has no clue. 10/1... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668226093... | 10 | 10 | None | None | None | None | None |
| 2232 | 668221241640230912 | NaN | NaN | 2015-11-22 00:15:33 +0000 | <a href="http://twitter.com/download/iphone" r... | These two dogs are Bo & Smittens. Smittens... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668221241... | 10 | 10 | None | None | None | None | None |
| 2233 | 668204964695683073 | NaN | NaN | 2015-11-21 23:10:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Ron. Ron's currently experiencing a br... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668204964... | 8 | 10 | Ron | None | None | None | None |
| 2234 | 668190681446379520 | NaN | NaN | 2015-11-21 22:14:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Skittles. I would kidnap Skittles. Pin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668190681... | 12 | 10 | Skittles | None | None | None | None |
| 2235 | 668171859951755264 | NaN | NaN | 2015-11-21 20:59:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Trans Siberian Kellogg named Alfonso... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668171859... | 7 | 10 | a | None | None | None | None |
| 2236 | 668154635664932864 | NaN | NaN | 2015-11-21 19:50:53 +0000 | <a href="http://twitter.com/download/iphone" r... | Fun dogs here. Top one clearly an athlete. Bot... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668154635... | 9 | 10 | None | None | None | None | None |
| 2237 | 668142349051129856 | NaN | NaN | 2015-11-21 19:02:04 +0000 | <a href="http://twitter.com/download/iphone" r... | This lil pup is Oliver. Hops around. Has wings... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668142349... | 2 | 10 | None | None | None | None | None |
| 2238 | 668113020489474048 | NaN | NaN | 2015-11-21 17:05:31 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Alfie. He's that one hypocritical gym ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/668113020... | 6 | 10 | Alfie | None | None | None | None |
| 2239 | 667937095915278337 | NaN | NaN | 2015-11-21 05:26:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This dog resembles a baked potato. Bed looks u... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667937095... | 3 | 10 | None | None | None | None | None |
| 2240 | 667924896115245057 | NaN | NaN | 2015-11-21 04:37:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jiminy. He has always wanted to be a c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667924896... | 9 | 10 | Jiminy | None | None | None | None |
| 2241 | 667915453470232577 | NaN | NaN | 2015-11-21 04:00:28 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Otis. He is a Peruvian Quartzite. Pic spo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667915453... | 10 | 10 | Otis | None | None | None | None |
| 2242 | 667911425562669056 | NaN | NaN | 2015-11-21 03:44:27 +0000 | <a href="http://twitter.com/download/iphone" r... | Wow. Armored dog here. Ready for battle. Face ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667911425... | 5 | 10 | None | None | None | None | None |
| 2243 | 667902449697558528 | NaN | NaN | 2015-11-21 03:08:47 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Cleopatricia. She is a northern Paperb... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667902449... | 9 | 10 | Cleopatricia | None | None | None | None |
| 2244 | 667886921285246976 | NaN | NaN | 2015-11-21 02:07:05 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Erik. He's fucken massive. But also ki... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667886921... | 11 | 10 | Erik | None | None | None | None |
| 2245 | 667885044254572545 | NaN | NaN | 2015-11-21 01:59:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Meet Stu. Stu has stacks on stacks and an eye ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667885044... | 10 | 10 | Stu | None | None | None | None |
| 2246 | 667878741721415682 | NaN | NaN | 2015-11-21 01:34:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Tedrick. He lives on the edge. Needs s... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667878741... | 2 | 10 | Tedrick | None | None | None | None |
| 2247 | 667873844930215936 | NaN | NaN | 2015-11-21 01:15:07 +0000 | <a href="http://twitter.com/download/iphone" r... | Neat dog. Lots of spikes. Always in push-up po... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667873844... | 10 | 10 | None | None | None | None | None |
| 2248 | 667866724293877760 | NaN | NaN | 2015-11-21 00:46:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Shaggy. He knows exactly how to solve ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667866724... | 10 | 10 | Shaggy | None | None | None | None |
| 2249 | 667861340749471744 | NaN | NaN | 2015-11-21 00:25:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Shotokon Macadamia mix named Cheryl.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667861340... | 9 | 10 | a | None | None | None | None |
| 2250 | 667832474953625600 | NaN | NaN | 2015-11-20 22:30:44 +0000 | <a href="http://twitter.com/download/iphone" r... | THE EYES 12/10\n\nI'm sorry. These are suppose... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667832474... | 12 | 10 | None | None | None | None | None |
| 2251 | 667806454573760512 | NaN | NaN | 2015-11-20 20:47:20 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Filup. He is overcome with joy after f... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667806454... | 10 | 10 | Filup | None | None | None | None |
| 2252 | 667801013445750784 | NaN | NaN | 2015-11-20 20:25:43 +0000 | <a href="http://twitter.com/download/iphone" r... | OMIGOD 12/10 https://t.co/SVMF4Frf1w | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667801013... | 12 | 10 | None | None | None | None | None |
| 2253 | 667793409583771648 | NaN | NaN | 2015-11-20 19:55:30 +0000 | <a href="http://twitter.com/download/iphone" r... | Dogs only please. Small cows and other non can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667793409... | 8 | 10 | None | None | None | None | None |
| 2254 | 667782464991965184 | NaN | NaN | 2015-11-20 19:12:01 +0000 | <a href="http://twitter.com/download/iphone" r... | Super rare dog. Endangered (?). Thinks it's fu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667782464... | 9 | 10 | None | None | None | None | None |
| 2255 | 667773195014021121 | NaN | NaN | 2015-11-20 18:35:10 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is a rare Hungarian Pinot named Jessiga. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667773195... | 8 | 10 | a | None | None | None | None |
| 2256 | 667766675769573376 | NaN | NaN | 2015-11-20 18:09:16 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Calvin. He is a Luxembourgian Mayo. Ha... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667766675... | 9 | 10 | Calvin | None | None | None | None |
| 2257 | 667728196545200128 | NaN | NaN | 2015-11-20 15:36:22 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Meet Olive. He comes to spot by tree to remini... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667728196... | 11 | 10 | Olive | None | None | None | None |
| 2258 | 667724302356258817 | NaN | NaN | 2015-11-20 15:20:54 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | What a dog to start the day with. Very calm. L... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667724302... | 7 | 10 | None | None | None | None | None |
| 2259 | 667550904950915073 | NaN | NaN | 2015-11-20 03:51:52 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | RT @dogratingrating: Exceptional talent. Origi... | 6.675487e+17 | 4.296832e+09 | 2015-11-20 03:43:06 +0000 | https://twitter.com/dogratingrating/status/667... | 12 | 10 | None | None | None | None | None |
| 2260 | 667550882905632768 | NaN | NaN | 2015-11-20 03:51:47 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | RT @dogratingrating: Unoriginal idea. Blatant ... | 6.675484e+17 | 4.296832e+09 | 2015-11-20 03:41:59 +0000 | https://twitter.com/dogratingrating/status/667... | 5 | 10 | None | None | None | None | None |
| 2261 | 667549055577362432 | NaN | NaN | 2015-11-20 03:44:31 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Never seen dog like this. Breathes heavy. Tilt... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667549055... | 1 | 10 | None | None | None | None | None |
| 2262 | 667546741521195010 | NaN | NaN | 2015-11-20 03:35:20 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Here is George. George took a selfie of his ne... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667546741... | 9 | 10 | George | None | None | None | None |
| 2263 | 667544320556335104 | NaN | NaN | 2015-11-20 03:25:43 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Kial. Kial is either wearing a cape, w... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667544320... | 10 | 10 | Kial | None | None | None | None |
| 2264 | 667538891197542400 | NaN | NaN | 2015-11-20 03:04:08 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is a southwest Coriander named Klint. Hat... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667538891... | 9 | 10 | a | None | None | None | None |
| 2265 | 667534815156183040 | NaN | NaN | 2015-11-20 02:47:56 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Frank (pronounced "Fronq"). Too many b... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667534815... | 8 | 10 | Frank | None | None | None | None |
| 2266 | 667530908589760512 | NaN | NaN | 2015-11-20 02:32:25 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Meet Naphaniel. He doesn't necessarily enjoy h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667530908... | 10 | 10 | Naphaniel | None | None | None | None |
| 2267 | 667524857454854144 | NaN | NaN | 2015-11-20 02:08:22 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Another topnotch dog. His name is Big Jumpy Ra... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667524857... | 12 | 10 | None | None | None | None | None |
| 2268 | 667517642048163840 | NaN | NaN | 2015-11-20 01:39:42 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Dook & Milo. Dook is struggling to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667517642... | 8 | 10 | Dook | None | None | None | None |
| 2269 | 667509364010450944 | NaN | NaN | 2015-11-20 01:06:48 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This a Norwegian Pewterschmidt named Tickles. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667509364... | 12 | 10 | None | None | None | None | None |
| 2270 | 667502640335572993 | NaN | NaN | 2015-11-20 00:40:05 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Say hello to Hall and Oates. Oates is winking ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667502640... | 11 | 10 | Hall | None | None | None | None |
| 2271 | 667495797102141441 | NaN | NaN | 2015-11-20 00:12:54 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Philippe from Soviet Russia. Commandin... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667495797... | 9 | 10 | Philippe | None | None | None | None |
| 2272 | 667491009379606528 | NaN | NaN | 2015-11-19 23:53:52 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Two dogs in this one. Both are rare Jujitsu Py... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667491009... | 7 | 10 | None | None | None | None | None |
| 2273 | 667470559035432960 | NaN | NaN | 2015-11-19 22:32:36 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is a northern Wahoo named Kohl. He runs t... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667470559... | 11 | 10 | a | None | None | None | None |
| 2274 | 667455448082227200 | NaN | NaN | 2015-11-19 21:32:34 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | This is Reese and Twips. Reese protects Twips.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667455448... | 7 | 10 | Reese | None | None | None | None |
| 2275 | 667453023279554560 | NaN | NaN | 2015-11-19 21:22:56 +0000 | <a href="http://twitter.com" rel="nofollow">Tw... | Meet Cupcake. I would do unspeakable things fo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667453023... | 11 | 10 | Cupcake | None | None | None | None |
| 2276 | 667443425659232256 | NaN | NaN | 2015-11-19 20:44:47 +0000 | <a href="http://twitter.com/download/iphone" r... | Exotic dog here. Long neck. Weird paws. Obsess... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667443425... | 6 | 10 | None | None | None | None | None |
| 2277 | 667437278097252352 | NaN | NaN | 2015-11-19 20:20:22 +0000 | <a href="http://twitter.com/download/iphone" r... | Never seen this breed before. Very pointy pup.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667437278... | 10 | 10 | None | None | None | None | None |
| 2278 | 667435689202614272 | NaN | NaN | 2015-11-19 20:14:03 +0000 | <a href="http://twitter.com/download/iphone" r... | Ermergerd 12/10 https://t.co/PQni2sjPsm | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667435689... | 12 | 10 | None | None | None | None | None |
| 2279 | 667405339315146752 | NaN | NaN | 2015-11-19 18:13:27 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Biden. Biden just tripped... 7/10 http... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667405339... | 7 | 10 | Biden | None | None | None | None |
| 2280 | 667393430834667520 | NaN | NaN | 2015-11-19 17:26:08 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Fwed. He is a Canadian Asian Taylormad... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667393430... | 8 | 10 | Fwed | None | None | None | None |
| 2281 | 667369227918143488 | NaN | NaN | 2015-11-19 15:49:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a neat pup. Very white. Cool shad... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667369227... | 10 | 10 | None | None | None | None | None |
| 2282 | 667211855547486208 | NaN | NaN | 2015-11-19 05:24:37 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Genevieve. She is a golden retriever c... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667211855... | 9 | 10 | Genevieve | None | None | None | None |
| 2283 | 667200525029539841 | NaN | NaN | 2015-11-19 04:39:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Joshwa. He is a fuckboy supreme. He cl... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667200525... | 11 | 10 | Joshwa | None | None | None | None |
| 2284 | 667192066997374976 | NaN | NaN | 2015-11-19 04:05:59 +0000 | <a href="http://twitter.com/download/iphone" r... | *takes several long deep breaths* omg omg oMG ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667192066... | 12 | 10 | None | None | None | None | None |
| 2285 | 667188689915760640 | NaN | NaN | 2015-11-19 03:52:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Quite an advanced dog here. Impressively dress... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667188689... | 10 | 10 | None | None | None | None | None |
| 2286 | 667182792070062081 | NaN | NaN | 2015-11-19 03:29:07 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Timison. He just told an awful joke bu... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667182792... | 10 | 10 | Timison | None | None | None | None |
| 2287 | 667177989038297088 | NaN | NaN | 2015-11-19 03:10:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a Dasani Kingfisher from Maine. His na... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667177989... | 8 | 10 | a | None | None | None | None |
| 2288 | 667176164155375616 | NaN | NaN | 2015-11-19 03:02:47 +0000 | <a href="http://twitter.com/download/iphone" r... | These are strange dogs. All have toupees. Long... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667176164... | 4 | 10 | None | None | None | None | None |
| 2289 | 667174963120574464 | NaN | NaN | 2015-11-19 02:58:01 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clarence. His face says he doesn't wan... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667174963... | 9 | 10 | Clarence | None | None | None | None |
| 2290 | 667171260800061440 | NaN | NaN | 2015-11-19 02:43:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Say hello to Kenneth. He likes Reese's Puffs. ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667171260... | 10 | 10 | Kenneth | None | None | None | None |
| 2291 | 667165590075940865 | NaN | NaN | 2015-11-19 02:20:46 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Churlie. AKA Fetty Woof. Lost eye savi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667165590... | 10 | 10 | Churlie | None | None | None | None |
| 2292 | 667160273090932737 | NaN | NaN | 2015-11-19 01:59:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Bradlay. He is a Ronaldinho Matsuyama ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667160273... | 11 | 10 | Bradlay | None | None | None | None |
| 2293 | 667152164079423490 | NaN | NaN | 2015-11-19 01:27:25 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Pipsy. He is a fluffball. Enjoys trave... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667152164... | 12 | 10 | Pipsy | None | None | None | None |
| 2294 | 667138269671505920 | NaN | NaN | 2015-11-19 00:32:12 +0000 | <a href="http://twitter.com/download/iphone" r... | Extremely intelligent dog here. Has learned to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667138269... | 10 | 10 | None | None | None | None | None |
| 2295 | 667119796878725120 | NaN | NaN | 2015-11-18 23:18:48 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Gabe. He is a southern Baklava. Gabe h... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667119796... | 10 | 10 | Gabe | None | None | None | None |
| 2296 | 667090893657276420 | NaN | NaN | 2015-11-18 21:23:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Clybe. He is an Anemone Valdez. One ea... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667090893... | 7 | 10 | Clybe | None | None | None | None |
| 2297 | 667073648344346624 | NaN | NaN | 2015-11-18 20:15:26 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is Dave. He is actually just a skinny leg... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667073648... | 10 | 10 | Dave | None | None | None | None |
| 2298 | 667070482143944705 | 6.670655e+17 | 4.196984e+09 | 2015-11-18 20:02:51 +0000 | <a href="http://twitter.com/download/iphone" r... | After much debate this dog is being upgraded t... | NaN | NaN | NaN | NaN | 10 | 10 | None | None | None | None | None |
| 2299 | 667065535570550784 | NaN | NaN | 2015-11-18 19:43:11 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a Hufflepuff. Loves vest. Eyes wi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667065535... | 8 | 10 | None | None | None | None | None |
| 2300 | 667062181243039745 | NaN | NaN | 2015-11-18 19:29:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Keet. He is a Floridian Amukamara. Abs... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667062181... | 10 | 10 | Keet | None | None | None | None |
| 2301 | 667044094246576128 | NaN | NaN | 2015-11-18 18:17:59 +0000 | <a href="http://twitter.com/download/iphone" r... | 12/10 gimme now https://t.co/QZAnwgnOMB | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667044094... | 12 | 10 | None | None | None | None | None |
| 2302 | 667012601033924608 | NaN | NaN | 2015-11-18 16:12:51 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Klevin. He laughs a lot. Very cool dog... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/667012601... | 9 | 10 | Klevin | None | None | None | None |
| 2303 | 666996132027977728 | NaN | NaN | 2015-11-18 15:07:24 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Carll. He wants to be a donkey. But al... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666996132... | 10 | 10 | Carll | None | None | None | None |
| 2304 | 666983947667116034 | NaN | NaN | 2015-11-18 14:18:59 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a curly Ticonderoga named Pepe. No fee... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666983947... | 11 | 10 | a | None | None | None | None |
| 2305 | 666837028449972224 | NaN | NaN | 2015-11-18 04:35:11 +0000 | <a href="http://twitter.com/download/iphone" r... | My goodness. Very rare dog here. Large. Tail d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666837028... | 3 | 10 | None | None | None | None | None |
| 2306 | 666835007768551424 | NaN | NaN | 2015-11-18 04:27:09 +0000 | <a href="http://twitter.com/download/iphone" r... | These are Peruvian Feldspars. Their names are ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666835007... | 10 | 10 | None | None | None | None | None |
| 2307 | 666826780179869698 | NaN | NaN | 2015-11-18 03:54:28 +0000 | <a href="http://twitter.com/download/iphone" r... | 12/10 simply brilliant pup https://t.co/V6ZzG4... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666826780... | 12 | 10 | None | None | None | None | None |
| 2308 | 666817836334096384 | NaN | NaN | 2015-11-18 03:18:55 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jeph. He is a German Boston Shuttlecoc... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666817836... | 9 | 10 | Jeph | None | None | None | None |
| 2309 | 666804364988780544 | NaN | NaN | 2015-11-18 02:25:23 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jockson. He is a Pinnacle Sagittarius.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666804364... | 8 | 10 | Jockson | None | None | None | None |
| 2310 | 666786068205871104 | NaN | NaN | 2015-11-18 01:12:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Unfamiliar with this breed. Ears pointy af. Wo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666786068... | 2 | 10 | None | None | None | None | None |
| 2311 | 666781792255496192 | NaN | NaN | 2015-11-18 00:55:42 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a purebred Bacardi named Octaviath. Ca... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666781792... | 10 | 10 | a | None | None | None | None |
| 2312 | 666776908487630848 | NaN | NaN | 2015-11-18 00:36:17 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Josep. He is a Rye Manganese mix. Can ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666776908... | 5 | 10 | Josep | None | None | None | None |
| 2313 | 666739327293083650 | NaN | NaN | 2015-11-17 22:06:57 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Lugan. He is a Bohemian Rhapsody. Very... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666739327... | 10 | 10 | Lugan | None | None | None | None |
| 2314 | 666701168228331520 | NaN | NaN | 2015-11-17 19:35:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a golden Buckminsterfullerene named Jo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666701168... | 8 | 10 | a | None | None | None | None |
| 2315 | 666691418707132416 | NaN | NaN | 2015-11-17 18:56:35 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Christoper. He is a spotted Penne. Can... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666691418... | 8 | 10 | Christoper | None | None | None | None |
| 2316 | 666649482315059201 | NaN | NaN | 2015-11-17 16:09:56 +0000 | <a href="http://twitter.com/download/iphone" r... | Cool dog. Enjoys couch. Low monotone bark. Ver... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666649482... | 4 | 10 | None | None | None | None | None |
| 2317 | 666644823164719104 | NaN | NaN | 2015-11-17 15:51:26 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Jimothy. He is a Botwanian Gouda. Can ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666644823... | 9 | 10 | Jimothy | None | None | None | None |
| 2318 | 666454714377183233 | NaN | NaN | 2015-11-17 03:16:00 +0000 | <a href="http://twitter.com/download/iphone" r... | I'll name the dogs from now on. This is Kreggo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666454714... | 10 | 10 | Kreggory | None | None | None | None |
| 2319 | 666447344410484738 | NaN | NaN | 2015-11-17 02:46:43 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Scout. She is a black Downton Abbey. I... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666447344... | 9 | 10 | Scout | None | None | None | None |
| 2320 | 666437273139982337 | NaN | NaN | 2015-11-17 02:06:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we see a lone northeastern Cumberbatch. H... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666437273... | 7 | 10 | None | None | None | None | None |
| 2321 | 666435652385423360 | NaN | NaN | 2015-11-17 02:00:15 +0000 | <a href="http://twitter.com/download/iphone" r... | "Can you behave? You're ruining my wedding day... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666435652... | 10 | 10 | None | None | None | None | None |
| 2322 | 666430724426358785 | NaN | NaN | 2015-11-17 01:40:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh boy what a pup! Sunglasses take this one to... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666430724... | 6 | 10 | None | None | None | None | None |
| 2323 | 666428276349472768 | NaN | NaN | 2015-11-17 01:30:57 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have an Austrian Pulitzer. Collectors ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666428276... | 7 | 10 | None | None | None | None | None |
| 2324 | 666421158376562688 | NaN | NaN | 2015-11-17 01:02:40 +0000 | <a href="http://twitter.com/download/iphone" r... | *internally screaming* 12/10 https://t.co/YMcr... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666421158... | 12 | 10 | None | None | None | None | None |
| 2325 | 666418789513326592 | NaN | NaN | 2015-11-17 00:53:15 +0000 | <a href="http://twitter.com/download/iphone" r... | This is Walter. He is an Alaskan Terrapin. Lov... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666418789... | 10 | 10 | Walter | None | None | None | None |
| 2326 | 666411507551481857 | NaN | NaN | 2015-11-17 00:24:19 +0000 | <a href="http://twitter.com/download/iphone" r... | This is quite the dog. Gets really excited whe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666411507... | 2 | 10 | quite | None | None | None | None |
| 2327 | 666407126856765440 | NaN | NaN | 2015-11-17 00:06:54 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a southern Vesuvius bumblegruff. Can d... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666407126... | 7 | 10 | a | None | None | None | None |
| 2328 | 666396247373291520 | NaN | NaN | 2015-11-16 23:23:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh goodness. A super rare northeast Qdoba kang... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666396247... | 9 | 10 | None | None | None | None | None |
| 2329 | 666373753744588802 | NaN | NaN | 2015-11-16 21:54:18 +0000 | <a href="http://twitter.com/download/iphone" r... | Those are sunglasses and a jean jacket. 11/10 ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666373753... | 11 | 10 | None | None | None | None | None |
| 2330 | 666362758909284353 | NaN | NaN | 2015-11-16 21:10:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Unique dog here. Very small. Lives in containe... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666362758... | 6 | 10 | None | None | None | None | None |
| 2331 | 666353288456101888 | NaN | NaN | 2015-11-16 20:32:58 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a mixed Asiago from the Galápagos... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666353288... | 8 | 10 | None | None | None | None | None |
| 2332 | 666345417576210432 | NaN | NaN | 2015-11-16 20:01:42 +0000 | <a href="http://twitter.com/download/iphone" r... | Look at this jokester thinking seat belt laws ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666345417... | 10 | 10 | None | None | None | None | None |
| 2333 | 666337882303524864 | NaN | NaN | 2015-11-16 19:31:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is an extremely rare horned Parthenon. No... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666337882... | 9 | 10 | an | None | None | None | None |
| 2334 | 666293911632134144 | NaN | NaN | 2015-11-16 16:37:02 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a funny dog. Weird toes. Won't come do... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666293911... | 3 | 10 | a | None | None | None | None |
| 2335 | 666287406224695296 | NaN | NaN | 2015-11-16 16:11:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is an Albanian 3 1/2 legged Episcopalian... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666287406... | 1 | 2 | an | None | None | None | None |
| 2336 | 666273097616637952 | NaN | NaN | 2015-11-16 15:14:19 +0000 | <a href="http://twitter.com/download/iphone" r... | Can take selfies 11/10 https://t.co/ws2AMaNwPW | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666273097... | 11 | 10 | None | None | None | None | None |
| 2337 | 666268910803644416 | NaN | NaN | 2015-11-16 14:57:41 +0000 | <a href="http://twitter.com/download/iphone" r... | Very concerned about fellow dog trapped in com... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666268910... | 10 | 10 | None | None | None | None | None |
| 2338 | 666104133288665088 | NaN | NaN | 2015-11-16 04:02:55 +0000 | <a href="http://twitter.com/download/iphone" r... | Not familiar with this breed. No tail (weird).... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666104133... | 1 | 10 | None | None | None | None | None |
| 2339 | 666102155909144576 | NaN | NaN | 2015-11-16 03:55:04 +0000 | <a href="http://twitter.com/download/iphone" r... | Oh my. Here you are seeing an Adobe Setter giv... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666102155... | 11 | 10 | None | None | None | None | None |
| 2340 | 666099513787052032 | NaN | NaN | 2015-11-16 03:44:34 +0000 | <a href="http://twitter.com/download/iphone" r... | Can stand on stump for what seems like a while... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666099513... | 8 | 10 | None | None | None | None | None |
| 2341 | 666094000022159362 | NaN | NaN | 2015-11-16 03:22:39 +0000 | <a href="http://twitter.com/download/iphone" r... | This appears to be a Mongolian Presbyterian mi... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666094000... | 9 | 10 | None | None | None | None | None |
| 2342 | 666082916733198337 | NaN | NaN | 2015-11-16 02:38:37 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a well-established sunblockerspan... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666082916... | 6 | 10 | None | None | None | None | None |
| 2343 | 666073100786774016 | NaN | NaN | 2015-11-16 01:59:36 +0000 | <a href="http://twitter.com/download/iphone" r... | Let's hope this flight isn't Malaysian (lol). ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666073100... | 10 | 10 | None | None | None | None | None |
| 2344 | 666071193221509120 | NaN | NaN | 2015-11-16 01:52:02 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a northern speckled Rhododendron.... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666071193... | 9 | 10 | None | None | None | None | None |
| 2345 | 666063827256086533 | NaN | NaN | 2015-11-16 01:22:45 +0000 | <a href="http://twitter.com/download/iphone" r... | This is the happiest dog you will ever see. Ve... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666063827... | 10 | 10 | the | None | None | None | None |
| 2346 | 666058600524156928 | NaN | NaN | 2015-11-16 01:01:59 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is the Rand Paul of retrievers folks! He'... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666058600... | 8 | 10 | the | None | None | None | None |
| 2347 | 666057090499244032 | NaN | NaN | 2015-11-16 00:55:59 +0000 | <a href="http://twitter.com/download/iphone" r... | My oh my. This is a rare blond Canadian terrie... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666057090... | 9 | 10 | a | None | None | None | None |
| 2348 | 666055525042405380 | NaN | NaN | 2015-11-16 00:49:46 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a Siberian heavily armored polar bear ... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666055525... | 10 | 10 | a | None | None | None | None |
| 2349 | 666051853826850816 | NaN | NaN | 2015-11-16 00:35:11 +0000 | <a href="http://twitter.com/download/iphone" r... | This is an odd dog. Hard on the outside but lo... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666051853... | 2 | 10 | an | None | None | None | None |
| 2350 | 666050758794694657 | NaN | NaN | 2015-11-16 00:30:50 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a truly beautiful English Wilson Staff... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666050758... | 10 | 10 | a | None | None | None | None |
| 2351 | 666049248165822465 | NaN | NaN | 2015-11-16 00:24:50 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a 1949 1st generation vulpix. Enj... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666049248... | 5 | 10 | None | None | None | None | None |
| 2352 | 666044226329800704 | NaN | NaN | 2015-11-16 00:04:52 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a purebred Piers Morgan. Loves to Netf... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666044226... | 6 | 10 | a | None | None | None | None |
| 2353 | 666033412701032449 | NaN | NaN | 2015-11-15 23:21:54 +0000 | <a href="http://twitter.com/download/iphone" r... | Here is a very happy pup. Big fan of well-main... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666033412... | 9 | 10 | a | None | None | None | None |
| 2354 | 666029285002620928 | NaN | NaN | 2015-11-15 23:05:30 +0000 | <a href="http://twitter.com/download/iphone" r... | This is a western brown Mitsubishi terrier. Up... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666029285... | 7 | 10 | a | None | None | None | None |
| 2355 | 666020888022790149 | NaN | NaN | 2015-11-15 22:32:08 +0000 | <a href="http://twitter.com/download/iphone" r... | Here we have a Japanese Irish Setter. Lost eye... | NaN | NaN | NaN | https://twitter.com/dog_rates/status/666020888... | 8 | 10 | None | None | None | None | None |
archive_df.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2356 entries, 0 to 2355 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2356 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2356 non-null object 4 source 2356 non-null object 5 text 2356 non-null object 6 retweeted_status_id 181 non-null float64 7 retweeted_status_user_id 181 non-null float64 8 retweeted_status_timestamp 181 non-null object 9 expanded_urls 2297 non-null object 10 rating_numerator 2356 non-null int64 11 rating_denominator 2356 non-null int64 12 name 2356 non-null object 13 doggo 2356 non-null object 14 floofer 2356 non-null object 15 pupper 2356 non-null object 16 puppo 2356 non-null object dtypes: float64(4), int64(3), object(10) memory usage: 313.0+ KB
archive_df[['rating_numerator', 'rating_denominator']].describe().T
| count | mean | std | min | 25% | 50% | 75% | max | |
|---|---|---|---|---|---|---|---|---|
| rating_numerator | 2356.0 | 13.126486 | 45.876648 | 0.0 | 10.0 | 11.0 | 12.0 | 1776.0 |
| rating_denominator | 2356.0 | 10.455433 | 6.745237 | 0.0 | 10.0 | 10.0 | 10.0 | 170.0 |
archive_df['name'].value_counts()
None 745 a 55 Charlie 12 Cooper 11 Lucy 11 Oliver 11 Penny 10 Tucker 10 Lola 10 Bo 9 Winston 9 Sadie 8 the 8 Buddy 7 Daisy 7 Toby 7 an 7 Bailey 7 Bella 6 Rusty 6 Dave 6 Koda 6 Jax 6 Milo 6 Oscar 6 Jack 6 Leo 6 Scout 6 Stanley 6 Phil 5 Oakley 5 Chester 5 very 5 Larry 5 Alfie 5 Louis 5 Sammy 5 Bentley 5 Gus 5 Sunny 5 Finn 5 George 5 Luna 4 Clark 4 Beau 4 Maggie 4 just 4 Sampson 4 Jerry 4 Archie 4 quite 4 Reginald 4 Jeffrey 4 Moose 4 Chip 4 Loki 4 Boomer 4 Shadow 4 Clarence 4 Maddie 4 Reggie 4 Ruby 4 Winnie 4 Dexter 4 Walter 4 Gerald 4 Bruce 4 one 4 Scooter 4 Derek 4 Riley 4 Gary 4 Maximus 4 Sophie 4 Bear 4 Cassie 4 Brody 4 Hank 4 Carl 4 Duke 4 Nala 3 Ted 3 Colby 3 Kyle 3 Coco 3 Zoey 3 Jimothy 3 Peaches 3 Olive 3 Mia 3 Malcolm 3 Max 3 Zeke 3 Ellie 3 Lily 3 Wyatt 3 Calvin 3 Klevin 3 Wallace 3 Lorenzo 3 Sebastian 3 Steven 3 Waffles 3 Louie 3 Wilson 3 Paisley 3 Vincent 3 Otis 3 Reese 3 Rosie 3 Arnie 3 Frankie 3 Earl 3 Rory 3 Gizmo 3 Samson 3 Doug 3 Luca 2 Franklin 2 Alice 2 Butter 2 Gromit 2 Pickles 2 Jeph 2 Chuckles 2 Cody 2 Phineas 2 Finley 2 Doc 2 Lou 2 Titan 2 Solomon 2 Olivia 2 Sierra 2 Bungalo 2 Stubert 2 Blitz 2 Cash 2 Thumas 2 Abby 2 Hammond 2 Kyro 2 Jimison 2 Trooper 2 Keith 2 Aspen 2 Philbert 2 Griffin 2 Yogi 2 Coops 2 Balto 2 Levi 2 Kirby 2 Smokey 2 Rufus 2 Bell 2 Gabe 2 Chipson 2 Rizzy 2 Kilo 2 Flávio 2 Sarge 2 Fiona 2 Charles 2 Tyr 2 Hobbes 2 Anakin 2 Nelly 2 Jiminy 2 Albert 2 Misty 2 Albus 2 Eve 2 Moe 2 Paull 2 Davey 2 Baxter 2 Hurley 2 Canela 2 Wally 2 Kenny 2 Odie 2 Terry 2 Belle 2 Bubbles 2 Jamesy 2 Rocky 2 Logan 2 Meyer 2 Quinn 2 Moreton 2 Kreg 2 getting 2 Patrick 2 Mattie 2 Bisquick 2 Atticus 2 Neptune 2 Bob 2 Fizz 2 Opal 2 Rocco 2 Kenneth 2 Tyrone 2 Benedict 2 mad 2 Oshie 2 Dakota 2 CeCe 2 Hercules 2 Kevin 2 Pablo 2 Lennon 2 Klein 2 Brad 2 Timison 2 Atlas 2 Happy 2 Elliot 2 Ollie 2 Sandy 2 Piper 2 Rubio 2 Chet 2 Ava 2 Churlie 2 Axel 2 actually 2 Nollie 2 Frank 2 Ken 2 Theodore 2 Remington 2 Sugar 2 Crystal 2 Ozzy 2 Harold 2 Betty 2 Indie 2 Linda 2 Pipsy 2 Django 2 Raymond 2 Pippa 2 Dash 2 Marley 2 Jesse 2 Percy 2 Lenny 2 Ash 2 Herald 2 Emmy 2 Penelope 2 Mister 2 Curtis 2 Lincoln 2 Fred 2 Herm 2 Keurig 2 Sansa 2 Hunter 2 Seamus 2 Cali 2 Leela 2 Shaggy 2 Cupcake 2 Chompsky 2 Juno 2 Eli 2 Layla 2 Terrance 2 Lilly 2 Carly 2 Jackson 2 Harper 2 Maxaroni 2 Benji 2 Bernie 2 Sam 2 Chelsea 2 Herschel 2 Baloo 2 Panda 2 Dawn 2 Gidget 2 Roosevelt 2 Watson 2 Astrid 2 Phred 2 Calbert 2 not 2 Romeo 2 Kreggory 2 Stephan 2 Oliviér 2 Snoopy 1 Mac 1 Kendall 1 old 1 Kane 1 Wafer 1 Flurpson 1 Combo 1 Chubbs 1 Goliath 1 Dudley 1 Poppy 1 Tuck 1 Jarod 1 Shadoe 1 Kramer 1 Bubba 1 Kayla 1 Angel 1 Nugget 1 officially 1 Carper 1 Cermet 1 Grizzwald 1 Link 1 Frönq 1 Blipson 1 Gunner 1 Mairi 1 Grady 1 Snickers 1 Akumi 1 Zeus 1 Suki 1 Kuyu 1 Ferg 1 Iggy 1 Hamrick 1 Aja 1 Clybe 1 all 1 Crumpet 1 Aubie 1 Teddy 1 Ridley 1 Mason 1 Ike 1 Snoop 1 Beckham 1 Storkson 1 Emmie 1 Thor 1 Charl 1 Dale 1 Ember 1 Charleson 1 Dot 1 Remy 1 Kathmandu 1 Christoper 1 Tom 1 Shakespeare 1 Scruffers 1 Divine 1 Pluto 1 Tupawc 1 Obi 1 Sage 1 Kaiya 1 Sid 1 Adele 1 Kanu 1 Maude 1 Birf 1 Ralphus 1 Kellogg 1 Blakely 1 Rooney 1 Kial 1 Molly 1 Hubertson 1 infuriating 1 Newt 1 Danny 1 Timber 1 Huxley 1 Ronnie 1 Hall 1 Jeffri 1 Geoff 1 Murphy 1 Godzilla 1 Rufio 1 Fabio 1 Geno 1 Trevith 1 Lassie 1 Timofy 1 Bert 1 Rey 1 Jeb 1 Arya 1 Humphrey 1 Kobe 1 Glenn 1 Cheesy 1 Tito 1 Chef 1 Hero 1 Willie 1 Izzy 1 Lulu 1 Jaspers 1 Eevee 1 incredibly 1 Margo 1 Willem 1 Oreo 1 Burt 1 Jomathan 1 Jessiga 1 Boots 1 Amy 1 Claude 1 Skye 1 Superpup 1 Ralph 1 Swagger 1 Lorelei 1 Crimson 1 Millie 1 Opie 1 Lillie 1 Lance 1 Cannon 1 Dallas 1 Liam 1 light 1 Ace 1 Lizzie 1 Keet 1 Strudel 1 Gustav 1 Marlee 1 Fiji 1 Bobble 1 Rizzo 1 Wishes 1 Sunshine 1 Eriq 1 JD 1 Kulet 1 Crawford 1 Brandy 1 Cal 1 Emma 1 Peanut 1 Rontu 1 Jed 1 General 1 Clifford 1 Miguel 1 Kloey 1 Dex 1 Zooey 1 Tedders 1 Boston 1 Monty 1 Tanner 1 Steve 1 Tilly 1 Lugan 1 Zeek 1 Bronte 1 Ben 1 Gilbert 1 Sweet 1 Alexanderson 1 Ito 1 Sonny 1 Coleman 1 Blue 1 Venti 1 Reptar 1 Aiden 1 Karl 1 Michelangelope 1 Tug 1 Major 1 Andy 1 Karll 1 Noosh 1 Spark 1 Pete 1 Alfy 1 Jazz 1 Duddles 1 Kota 1 Sparky 1 Willy 1 Maxwell 1 Mark 1 Rilo 1 Aqua 1 Vinscent 1 Ralf 1 Mabel 1 Socks 1 Taco 1 Maya 1 Mollie 1 Lenox 1 Godi 1 Bilbo 1 Meera 1 Julius 1 Dante 1 Fynn 1 Ebby 1 Rose 1 Marq 1 Pupcasso 1 Tommy 1 Edd 1 Pawnd 1 Florence 1 Jonah 1 Clyde 1 Blu 1 Daniel 1 Jim 1 Berb 1 Blanket 1 Buckley 1 Rupert 1 Jay 1 Rodney 1 Glacier 1 Loomis 1 Lilli 1 Mingus 1 Banjo 1 this 1 Stu 1 Leonidas 1 Finnegus 1 Skittles 1 Ambrose 1 Ginger 1 Pilot 1 Mookie 1 Jebberson 1 Pubert 1 Juckson 1 Shelby 1 Yukon 1 Amélie 1 Simba 1 William 1 Corey 1 Herb 1 Jo 1 Edmund 1 Trigger 1 Jimbo 1 Eugene 1 Rodman 1 Rumble 1 Jett 1 DayZ 1 Vinnie 1 Saydee 1 Beemo 1 Schnozz 1 Nico 1 his 1 Katie 1 Pancake 1 Lilah 1 Cheryl 1 Doobert 1 Rumpole 1 Patch 1 Pippin 1 Ed 1 Jaycob 1 Richie 1 Ron 1 Dook 1 Grizz 1 Callie 1 Maks 1 Sky 1 Wesley 1 Hanz 1 Harlso 1 Mutt 1 Pip 1 Monkey 1 Iroh 1 Jersey 1 Fido 1 Duchess 1 my 1 Stefan 1 Perry 1 Mike 1 Skittle 1 Pepper 1 Dug 1 Cleopatricia 1 Laela 1 Coopson 1 Apollo 1 Sprout 1 Darrel 1 Dotsy 1 Gòrdón 1 Bruno 1 Gordon 1 Zoe 1 Chuq 1 Lolo 1 Sandra 1 Rudy 1 Sweets 1 Dobby 1 Enchilada 1 Cedrick 1 Yoda 1 Chaz 1 Donny 1 Kaia 1 Aldrick 1 Derby 1 Sailer 1 Rueben 1 Harvey 1 Brat 1 Bloop 1 Roscoe 1 Ralphy 1 Kingsley 1 Durg 1 Tove 1 Jeffrie 1 Karma 1 Einstein 1 Benny 1 Howie 1 Joshwa 1 Buddah 1 Harnold 1 Barry 1 Rhino 1 Bookstore 1 Billl 1 Barclay 1 Brandonald 1 Carll 1 Harry 1 Sephie 1 Filup 1 Chesterson 1 Arlen 1 Chevy 1 Comet 1 Darla 1 life 1 Franq 1 Tater 1 Travis 1 Zuzu 1 Raphael 1 Horace 1 Scott 1 Samsom 1 Terrenth 1 Emanuel 1 Dido 1 Livvie 1 Marty 1 Ester 1 Wiggles 1 Luther 1 Dixie 1 Todo 1 Dunkin 1 Stormy 1 Tebow 1 Lucky 1 Biden 1 Siba 1 Miley 1 Antony 1 Bradley 1 Joey 1 Arnold 1 Augie 1 Nigel 1 BeBe 1 Jackie 1 Kody 1 Trip 1 Jarvis 1 Dutch 1 Tyrus 1 Flash 1 Ralphé 1 Halo 1 Beya 1 Chase 1 River 1 by 1 Jennifur 1 Bode 1 Fillup 1 Mack 1 Lucia 1 Jameson 1 Henry 1 Meatball 1 Remus 1 Dwight 1 space 1 Harrison 1 Ole 1 Stella 1 Spencer 1 Snicku 1 Julio 1 Acro 1 Ruffles 1 Beebop 1 Ralphson 1 Olaf 1 Bauer 1 Tiger 1 Brudge 1 Cora 1 Cuddles 1 Tassy 1 Dewey 1 Oddie 1 Noah 1 Tino 1 Ralpher 1 Koko 1 Erik 1 Rolf 1 Damon 1 Rascal 1 Grizzie 1 Severus 1 Staniel 1 Marvin 1 Bertson 1 Gin 1 Bodie 1 Ronduh 1 Rinna 1 Walker 1 Mauve 1 Tess 1 Dylan 1 Tedrick 1 Gerbald 1 Jareld 1 Mimosa 1 Brandi 1 Ivar 1 Mary 1 Pavlov 1 Lipton 1 Jessifer 1 Autumn 1 Kevon 1 Cilantro 1 Odin 1 Kallie 1 Freddery 1 Tessa 1 Bobbay 1 Jiminus 1 Obie 1 Ashleigh 1 Alf 1 Diogi 1 Ziva 1 Lacy 1 Hector 1 Kona 1 Barney 1 Brownie 1 Deacon 1 Moofasa 1 Milky 1 Bonaparte 1 Ozzie 1 Jazzy 1 Philippe 1 Kara 1 Ralphie 1 Jordy 1 Leonard 1 Longfellow 1 Brady 1 Puff 1 Binky 1 Vixen 1 Torque 1 Tuco 1 Brian 1 Schnitzel 1 O 1 Spanky 1 Napolean 1 Stuart 1 Monster 1 Jerome 1 Banditt 1 Sprinkles 1 Bloo 1 Bowie 1 Striker 1 Pinot 1 Zara 1 Bobb 1 Fwed 1 Shawwn 1 Edgar 1 Tango 1 Maisey 1 Eazy 1 Champ 1 Jangle 1 Rorie 1 Alexander 1 Naphaniel 1 Cupid 1 Chadrick 1 Chesney 1 Sobe 1 DonDon 1 Mona 1 Arlo 1 Mojo 1 Georgie 1 Andru 1 Tobi 1 Jockson 1 Mya 1 Holly 1 Tayzie 1 Kollin 1 Shnuggles 1 Toffee 1 Kawhi 1 Brockly 1 Billy 1 Asher 1 Rambo 1 Linus 1 Eleanor 1 Reagan 1 Sojourner 1 Tycho 1 Anthony 1 Jeremy 1 Orion 1 Stewie 1 Norman 1 Heinrich 1 Darby 1 Stark 1 Huck 1 Mitch 1 Berkeley 1 Bluebert 1 Grey 1 Stephanus 1 Carbon 1 Strider 1 Gustaf 1 Clarq 1 Bones 1 Caryl 1 Carter 1 Amber 1 Chuck 1 Baron 1 Bobby 1 Covach 1 Evy 1 Vince 1 Lambeau 1 Shiloh 1 Malikai 1 Griswold 1 Ricky 1 Rover 1 Alejandro 1 Anna 1 Pherb 1 Creg 1 Clarkus 1 Taz 1 Fletcher 1 Lupe 1 Goose 1 Brutus 1 Hermione 1 Sailor 1 Winifred 1 Bradlay 1 Sully 1 Sora 1 Mo 1 Tripp 1 Al 1 Laika 1 Dietrich 1 Kirk 1 Chloe 1 Timmy 1 Smiley 1 Gert 1 Cecil 1 Genevieve 1 unacceptable 1 Farfle 1 Hazel 1 Devón 1 Shikha 1 Crouton 1 Pumpkin 1 Batdog 1 Furzey 1 Gabby 1 Kenzie 1 Randall 1 Butters 1 Theo 1 Brooks 1 Bayley 1 Robin 1 Lili 1 Tonks 1 Mosby 1 such 1 Shooter 1 Sundance 1 Nida 1 Ulysses 1 Traviss 1 Willow 1 Craig 1 Petrick 1 Nimbus 1 Josep 1 Colin 1 Bruiser 1 Name: name, dtype: int64
archive_df.isna().sum()
tweet_id 0 in_reply_to_status_id 2278 in_reply_to_user_id 2278 timestamp 0 source 0 text 0 retweeted_status_id 2175 retweeted_status_user_id 2175 retweeted_status_timestamp 2175 expanded_urls 59 rating_numerator 0 rating_denominator 0 name 0 doggo 0 floofer 0 pupper 0 puppo 0 dtype: int64
archive_df['doggo'].value_counts()
None 2259 doggo 97 Name: doggo, dtype: int64
archive_df['floofer'].value_counts()
None 2346 floofer 10 Name: floofer, dtype: int64
image
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 1.566650e-01 | True | Shetland_sheepdog | 6.142850e-02 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 7.419170e-02 | True | Rhodesian_ridgeback | 7.201000e-02 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 1.385840e-01 | True | bloodhound | 1.161970e-01 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 3.606870e-01 | True | miniature_pinscher | 2.227520e-01 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 2.436820e-01 | True | Doberman | 1.546290e-01 | True |
| 5 | 666050758794694657 | https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg | 1 | Bernese_mountain_dog | 0.651137 | True | English_springer | 2.637880e-01 | True | Greater_Swiss_Mountain_dog | 1.619920e-02 | True |
| 6 | 666051853826850816 | https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg | 1 | box_turtle | 0.933012 | False | mud_turtle | 4.588540e-02 | False | terrapin | 1.788530e-02 | False |
| 7 | 666055525042405380 | https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg | 1 | chow | 0.692517 | True | Tibetan_mastiff | 5.827940e-02 | True | fur_coat | 5.444860e-02 | False |
| 8 | 666057090499244032 | https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg | 1 | shopping_cart | 0.962465 | False | shopping_basket | 1.459380e-02 | False | golden_retriever | 7.958960e-03 | True |
| 9 | 666058600524156928 | https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg | 1 | miniature_poodle | 0.201493 | True | komondor | 1.923050e-01 | True | soft-coated_wheaten_terrier | 8.208610e-02 | True |
| 10 | 666063827256086533 | https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg | 1 | golden_retriever | 0.775930 | True | Tibetan_mastiff | 9.371780e-02 | True | Labrador_retriever | 7.242660e-02 | True |
| 11 | 666071193221509120 | https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg | 1 | Gordon_setter | 0.503672 | True | Yorkshire_terrier | 1.742010e-01 | True | Pekinese | 1.094540e-01 | True |
| 12 | 666073100786774016 | https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg | 1 | Walker_hound | 0.260857 | True | English_foxhound | 1.753820e-01 | True | Ibizan_hound | 9.747050e-02 | True |
| 13 | 666082916733198337 | https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg | 1 | pug | 0.489814 | True | bull_mastiff | 4.047220e-01 | True | French_bulldog | 4.895950e-02 | True |
| 14 | 666094000022159362 | https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg | 1 | bloodhound | 0.195217 | True | German_shepherd | 7.825980e-02 | True | malinois | 7.562780e-02 | True |
| 15 | 666099513787052032 | https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg | 1 | Lhasa | 0.582330 | True | Shih-Tzu | 1.661920e-01 | True | Dandie_Dinmont | 8.968830e-02 | True |
| 16 | 666102155909144576 | https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg | 1 | English_setter | 0.298617 | True | Newfoundland | 1.498420e-01 | True | borzoi | 1.336490e-01 | True |
| 17 | 666104133288665088 | https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg | 1 | hen | 0.965932 | False | cock | 3.391940e-02 | False | partridge | 5.206580e-05 | False |
| 18 | 666268910803644416 | https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg | 1 | desktop_computer | 0.086502 | False | desk | 8.554740e-02 | False | bookcase | 7.947970e-02 | False |
| 19 | 666273097616637952 | https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg | 1 | Italian_greyhound | 0.176053 | True | toy_terrier | 1.118840e-01 | True | basenji | 1.111520e-01 | True |
| 20 | 666287406224695296 | https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg | 1 | Maltese_dog | 0.857531 | True | toy_poodle | 6.306380e-02 | True | miniature_poodle | 2.558060e-02 | True |
| 21 | 666293911632134144 | https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg | 1 | three-toed_sloth | 0.914671 | False | otter | 1.525000e-02 | False | great_grey_owl | 1.320720e-02 | False |
| 22 | 666337882303524864 | https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg | 1 | ox | 0.416669 | False | Newfoundland | 2.784070e-01 | True | groenendael | 1.026430e-01 | True |
| 23 | 666345417576210432 | https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg | 1 | golden_retriever | 0.858744 | True | Chesapeake_Bay_retriever | 5.478680e-02 | True | Labrador_retriever | 1.424090e-02 | True |
| 24 | 666353288456101888 | https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg | 1 | malamute | 0.336874 | True | Siberian_husky | 1.476550e-01 | True | Eskimo_dog | 9.341240e-02 | True |
| 25 | 666362758909284353 | https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg | 1 | guinea_pig | 0.996496 | False | skunk | 2.402450e-03 | False | hamster | 4.608630e-04 | False |
| 26 | 666373753744588802 | https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg | 1 | soft-coated_wheaten_terrier | 0.326467 | True | Afghan_hound | 2.595510e-01 | True | briard | 2.068030e-01 | True |
| 27 | 666396247373291520 | https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg | 1 | Chihuahua | 0.978108 | True | toy_terrier | 9.396970e-03 | True | papillon | 4.576810e-03 | True |
| 28 | 666407126856765440 | https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg | 1 | black-and-tan_coonhound | 0.529139 | True | bloodhound | 2.442200e-01 | True | flat-coated_retriever | 1.738100e-01 | True |
| 29 | 666411507551481857 | https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg | 1 | coho | 0.404640 | False | barracouta | 2.714850e-01 | False | gar | 1.899450e-01 | False |
| 30 | 666418789513326592 | https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg | 1 | toy_terrier | 0.149680 | True | papillon | 1.482580e-01 | True | Chihuahua | 1.428600e-01 | True |
| 31 | 666421158376562688 | https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg | 1 | Blenheim_spaniel | 0.906777 | True | cocker_spaniel | 9.034640e-02 | True | Shih-Tzu | 1.116870e-03 | True |
| 32 | 666428276349472768 | https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg | 1 | Pembroke | 0.371361 | True | chow | 2.493940e-01 | True | Pomeranian | 2.418780e-01 | True |
| 33 | 666430724426358785 | https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg | 1 | llama | 0.505184 | False | Irish_terrier | 1.041090e-01 | True | dingo | 6.207120e-02 | False |
| 34 | 666435652385423360 | https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg | 1 | Chesapeake_Bay_retriever | 0.184130 | True | chain_saw | 5.677530e-02 | False | power_drill | 3.676340e-02 | False |
| 35 | 666437273139982337 | https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg | 1 | Chihuahua | 0.671853 | True | beagle | 1.246800e-01 | True | Saluki | 4.409420e-02 | True |
| 36 | 666447344410484738 | https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg | 1 | curly-coated_retriever | 0.322084 | True | giant_schnauzer | 2.879550e-01 | True | Labrador_retriever | 1.663310e-01 | True |
| 37 | 666454714377183233 | https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg | 1 | dalmatian | 0.278954 | True | Labrador_retriever | 2.376120e-01 | True | Great_Pyrenees | 1.711060e-01 | True |
| 38 | 666644823164719104 | https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg | 1 | Ibizan_hound | 0.044333 | True | Pembroke | 4.320930e-02 | True | West_Highland_white_terrier | 3.890560e-02 | True |
| 39 | 666649482315059201 | https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg | 1 | Border_collie | 0.447803 | True | English_springer | 1.704970e-01 | True | collie | 1.392060e-01 | True |
| 40 | 666691418707132416 | https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg | 1 | German_shepherd | 0.975401 | True | beagle | 8.687270e-03 | True | bloodhound | 5.394040e-03 | True |
| 41 | 666701168228331520 | https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg | 1 | Labrador_retriever | 0.887707 | True | Chihuahua | 2.930700e-02 | True | French_bulldog | 2.075630e-02 | True |
| 42 | 666739327293083650 | https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg | 1 | miniature_poodle | 0.546933 | True | cocker_spaniel | 1.652550e-01 | True | toy_poodle | 9.595890e-02 | True |
| 43 | 666776908487630848 | https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg | 1 | seat_belt | 0.375057 | False | miniature_pinscher | 1.671750e-01 | True | Chihuahua | 8.695060e-02 | True |
| 44 | 666781792255496192 | https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg | 1 | Italian_greyhound | 0.618316 | True | Weimaraner | 1.513630e-01 | True | vizsla | 8.598910e-02 | True |
| 45 | 666786068205871104 | https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg | 1 | snail | 0.999888 | False | slug | 5.514170e-05 | False | acorn | 2.625800e-05 | False |
| 46 | 666804364988780544 | https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg | 1 | English_setter | 0.328792 | True | Brittany_spaniel | 2.835450e-01 | True | Ibizan_hound | 5.746150e-02 | True |
| 47 | 666817836334096384 | https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg | 1 | miniature_schnauzer | 0.496953 | True | standard_schnauzer | 2.852760e-01 | True | giant_schnauzer | 7.376370e-02 | True |
| 48 | 666826780179869698 | https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg | 1 | Maltese_dog | 0.359383 | True | teddy | 1.487590e-01 | False | West_Highland_white_terrier | 1.060070e-01 | True |
| 49 | 666835007768551424 | https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg | 1 | Airedale | 0.448459 | True | toy_poodle | 1.240300e-01 | True | teddy | 1.101830e-01 | False |
| 50 | 666837028449972224 | https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg | 1 | triceratops | 0.442113 | False | armadillo | 1.140710e-01 | False | common_iguana | 4.325530e-02 | False |
| 51 | 666983947667116034 | https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg | 1 | swab | 0.589446 | False | chain_saw | 1.901420e-01 | False | wig | 3.450970e-02 | False |
| 52 | 666996132027977728 | https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg | 1 | hay | 0.507637 | False | Rottweiler | 6.248990e-02 | True | water_buffalo | 4.842470e-02 | False |
| 53 | 667012601033924608 | https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg | 1 | hyena | 0.987230 | False | African_hunting_dog | 1.260080e-02 | False | coyote | 5.735010e-05 | False |
| 54 | 667044094246576128 | https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg | 1 | golden_retriever | 0.765266 | True | Labrador_retriever | 2.066940e-01 | True | seat_belt | 1.066690e-02 | False |
| 55 | 667062181243039745 | https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg | 1 | Chesapeake_Bay_retriever | 0.825678 | True | vizsla | 9.099800e-02 | True | kelpie | 2.295620e-02 | True |
| 56 | 667065535570550784 | https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg | 1 | jigsaw_puzzle | 0.560001 | False | doormat | 1.032590e-01 | False | space_heater | 4.256800e-02 | False |
| 57 | 667073648344346624 | https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg | 1 | Chihuahua | 0.483682 | True | pug | 9.249390e-02 | True | Brabancon_griffon | 5.749540e-02 | True |
| 58 | 667090893657276420 | https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg | 1 | Chihuahua | 0.959514 | True | Italian_greyhound | 5.370150e-03 | True | Pomeranian | 2.641330e-03 | True |
| 59 | 667119796878725120 | https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg | 1 | Pembroke | 0.741563 | True | Chihuahua | 5.786590e-02 | True | toy_poodle | 3.912510e-02 | True |
| 60 | 667138269671505920 | https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg | 1 | West_Highland_white_terrier | 0.747713 | True | Samoyed | 2.436290e-01 | True | toy_poodle | 1.803970e-03 | True |
| 61 | 667152164079423490 | https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg | 1 | toy_poodle | 0.535411 | True | Pomeranian | 8.754400e-02 | True | miniature_poodle | 6.205000e-02 | True |
| 62 | 667160273090932737 | https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg | 1 | golden_retriever | 0.471351 | True | miniature_poodle | 9.199210e-02 | True | standard_poodle | 8.738540e-02 | True |
| 63 | 667165590075940865 | https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg | 1 | miniature_pinscher | 0.140173 | True | Rottweiler | 1.340940e-01 | True | beagle | 8.189980e-02 | True |
| 64 | 667171260800061440 | https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg | 1 | giant_schnauzer | 0.841265 | True | Lakeland_terrier | 5.274420e-02 | True | Irish_water_spaniel | 3.440170e-02 | True |
| 65 | 667174963120574464 | https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg | 1 | toy_poodle | 0.266437 | True | Chihuahua | 2.432230e-01 | True | bluetick | 7.280630e-02 | True |
| 66 | 667176164155375616 | https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg | 1 | soft-coated_wheaten_terrier | 0.318981 | True | Lakeland_terrier | 2.152180e-01 | True | toy_poodle | 1.060140e-01 | True |
| 67 | 667177989038297088 | https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg | 1 | vizsla | 0.259249 | True | Chesapeake_Bay_retriever | 1.762930e-01 | True | Weimaraner | 1.123690e-01 | True |
| 68 | 667182792070062081 | https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg | 1 | golden_retriever | 0.949892 | True | Irish_setter | 1.056380e-02 | True | Chesapeake_Bay_retriever | 5.821410e-03 | True |
| 69 | 667188689915760640 | https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg | 1 | vacuum | 0.335830 | False | swab | 2.652780e-01 | False | toilet_tissue | 1.407030e-01 | False |
| 70 | 667192066997374976 | https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg | 1 | Rottweiler | 0.283640 | True | miniature_pinscher | 1.481120e-01 | True | black-and-tan_coonhound | 9.558480e-02 | True |
| 71 | 667200525029539841 | https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg | 1 | Siberian_husky | 0.694904 | True | malamute | 2.320060e-01 | True | Eskimo_dog | 5.063510e-02 | True |
| 72 | 667211855547486208 | https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg | 1 | golden_retriever | 0.462556 | True | Labrador_retriever | 4.549370e-01 | True | kuvasz | 2.419330e-02 | True |
| 73 | 667369227918143488 | https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg | 1 | teddy | 0.709545 | False | bath_towel | 1.272850e-01 | False | Christmas_stocking | 2.856750e-02 | False |
| 74 | 667393430834667520 | https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg | 1 | papillon | 0.557009 | True | Border_collie | 2.719630e-01 | True | collie | 7.347290e-02 | True |
| 75 | 667405339315146752 | https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg | 1 | Saint_Bernard | 0.381377 | True | Leonberg | 1.279980e-01 | True | golden_retriever | 6.935680e-02 | True |
| 76 | 667435689202614272 | https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg | 1 | Rottweiler | 0.999091 | True | miniature_pinscher | 4.503550e-04 | True | black-and-tan_coonhound | 1.571400e-04 | True |
| 77 | 667437278097252352 | https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg | 1 | porcupine | 0.989154 | False | bath_towel | 6.300490e-03 | False | badger | 9.663400e-04 | False |
| 78 | 667443425659232256 | https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg | 1 | goose | 0.980815 | False | drake | 6.917770e-03 | False | hen | 5.255170e-03 | False |
| 79 | 667453023279554560 | https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg | 1 | Labrador_retriever | 0.825670 | True | French_bulldog | 5.663940e-02 | True | Staffordshire_bullterrier | 5.401840e-02 | True |
| 80 | 667455448082227200 | https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg | 1 | Tibetan_terrier | 0.676376 | True | Irish_terrier | 5.493340e-02 | True | Yorkshire_terrier | 4.057550e-02 | True |
| 81 | 667470559035432960 | https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg | 1 | toy_poodle | 0.304175 | True | pug | 2.234270e-01 | True | Lakeland_terrier | 7.331650e-02 | True |
| 82 | 667491009379606528 | https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg | 1 | borzoi | 0.852088 | True | ice_bear | 1.322640e-01 | False | weasel | 5.729980e-03 | False |
| 83 | 667495797102141441 | https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg | 1 | Chihuahua | 0.143957 | True | Christmas_stocking | 1.186510e-01 | False | ski_mask | 9.248170e-02 | False |
| 84 | 667502640335572993 | https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg | 1 | Labrador_retriever | 0.996709 | True | golden_retriever | 1.688210e-03 | True | beagle | 7.116670e-04 | True |
| 85 | 667509364010450944 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 86 | 667517642048163840 | https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg | 1 | Italian_greyhound | 0.125176 | True | standard_poodle | 8.457150e-02 | True | cocker_spaniel | 8.134690e-02 | True |
| 87 | 667524857454854144 | https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg | 1 | hare | 0.447893 | False | dhole | 9.243530e-02 | False | Chesapeake_Bay_retriever | 8.812240e-02 | True |
| 88 | 667530908589760512 | https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg | 1 | golden_retriever | 0.633037 | True | kuvasz | 1.463910e-01 | True | Labrador_retriever | 4.618370e-02 | True |
| 89 | 667534815156183040 | https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg | 1 | Pembroke | 0.435254 | True | Cardigan | 3.074070e-01 | True | cocker_spaniel | 3.315830e-02 | True |
| 90 | 667538891197542400 | https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg | 1 | Yorkshire_terrier | 0.618957 | True | silky_terrier | 3.003130e-01 | True | Australian_terrier | 5.341200e-02 | True |
| 91 | 667544320556335104 | https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg | 1 | Pomeranian | 0.412893 | True | Pembroke | 3.129580e-01 | True | Chihuahua | 7.196040e-02 | True |
| 92 | 667546741521195010 | https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg | 1 | toy_poodle | 0.787424 | True | miniature_poodle | 2.022250e-01 | True | teddy | 4.047220e-03 | False |
| 93 | 667549055577362432 | https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg | 1 | electric_fan | 0.984377 | False | spotlight | 7.736710e-03 | False | lampshade | 1.901230e-03 | False |
| 94 | 667550882905632768 | https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg | 1 | web_site | 0.998258 | False | dishwasher | 2.010840e-04 | False | oscilloscope | 1.417360e-04 | False |
| 95 | 667550904950915073 | https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg | 1 | web_site | 0.999335 | False | vizsla | 8.106320e-05 | True | collie | 6.915900e-05 | True |
| 96 | 667724302356258817 | https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg | 1 | ibex | 0.619098 | False | bighorn | 1.251190e-01 | False | ram | 7.467320e-02 | False |
| 97 | 667728196545200128 | https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg | 1 | kuvasz | 0.360159 | True | golden_retriever | 2.937440e-01 | True | Labrador_retriever | 2.706730e-01 | True |
| 98 | 667766675769573376 | https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg | 1 | fire_engine | 0.883493 | False | tow_truck | 7.473390e-02 | False | jeep | 1.277260e-02 | False |
| 99 | 667773195014021121 | https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg | 1 | West_Highland_white_terrier | 0.360465 | True | pug | 9.349410e-02 | True | ice_bear | 6.903820e-02 | False |
| 100 | 667782464991965184 | https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg | 1 | lorikeet | 0.466149 | False | hummingbird | 8.301100e-02 | False | African_grey | 5.424740e-02 | False |
| 101 | 667793409583771648 | https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg | 1 | dalmatian | 0.535073 | True | English_setter | 4.512190e-01 | True | Great_Dane | 8.163610e-03 | True |
| 102 | 667801013445750784 | https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg | 1 | flat-coated_retriever | 0.508392 | True | Chesapeake_Bay_retriever | 2.622390e-01 | True | curly-coated_retriever | 4.891980e-02 | True |
| 103 | 667806454573760512 | https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg | 1 | toyshop | 0.253089 | False | Chihuahua | 1.871550e-01 | True | Brabancon_griffon | 1.127990e-01 | True |
| 104 | 667832474953625600 | https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg | 1 | miniature_pinscher | 0.214200 | True | bath_towel | 1.467890e-01 | False | Chihuahua | 1.041520e-01 | True |
| 105 | 667861340749471744 | https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg | 1 | malamute | 0.967275 | True | Siberian_husky | 1.616750e-02 | True | Eskimo_dog | 1.127740e-02 | True |
| 106 | 667866724293877760 | https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg | 1 | jigsaw_puzzle | 1.000000 | False | prayer_rug | 1.011300e-08 | False | doormat | 1.740170e-10 | False |
| 107 | 667873844930215936 | https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg | 1 | common_iguana | 0.999647 | False | frilled_lizard | 1.811500e-04 | False | African_chameleon | 1.283570e-04 | False |
| 108 | 667878741721415682 | https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg | 1 | seat_belt | 0.200373 | False | miniature_pinscher | 1.060030e-01 | True | schipperke | 1.047330e-01 | True |
| 109 | 667885044254572545 | https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg | 1 | malamute | 0.088530 | True | golden_retriever | 8.749860e-02 | True | muzzle | 7.500770e-02 | False |
| 110 | 667886921285246976 | https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg | 1 | Pomeranian | 0.800432 | True | Pekinese | 1.684450e-01 | True | Chihuahua | 8.949520e-03 | True |
| 111 | 667902449697558528 | https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg | 1 | Norwegian_elkhound | 0.298881 | True | malamute | 2.794790e-01 | True | Eskimo_dog | 1.984280e-01 | True |
| 112 | 667911425562669056 | https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg | 1 | frilled_lizard | 0.257695 | False | ox | 2.351600e-01 | False | triceratops | 8.531690e-02 | False |
| 113 | 667915453470232577 | https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg | 1 | leatherback_turtle | 0.452517 | False | boxer | 1.966550e-01 | True | terrapin | 1.609830e-01 | False |
| 114 | 667924896115245057 | https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg | 1 | Labrador_retriever | 0.209051 | True | hog | 2.039800e-01 | False | Newfoundland | 1.659140e-01 | True |
| 115 | 667937095915278337 | https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg | 1 | hamster | 0.172078 | False | guinea_pig | 9.492420e-02 | False | Band_Aid | 5.999520e-02 | False |
| 116 | 668113020489474048 | https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg | 1 | Pembroke | 0.548896 | True | Cardigan | 1.911010e-01 | True | collie | 5.981410e-02 | True |
| 117 | 668142349051129856 | https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg | 1 | Angora | 0.918834 | False | hen | 3.779340e-02 | False | wood_rabbit | 1.101490e-02 | False |
| 118 | 668154635664932864 | https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg | 1 | Arctic_fox | 0.473584 | False | wallaby | 2.614110e-01 | False | white_wolf | 8.094780e-02 | False |
| 119 | 668171859951755264 | https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg | 1 | Chihuahua | 0.664834 | True | cowboy_boot | 6.034300e-02 | False | giant_panda | 5.983750e-02 | False |
| 120 | 668190681446379520 | https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg | 1 | Blenheim_spaniel | 0.958402 | True | cocker_spaniel | 2.676430e-02 | True | Welsh_springer_spaniel | 7.789910e-03 | True |
| 121 | 668204964695683073 | https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg | 1 | Labrador_retriever | 0.655180 | True | golden_retriever | 1.078840e-01 | True | Chesapeake_Bay_retriever | 6.583470e-02 | True |
| 122 | 668221241640230912 | https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg | 1 | chow | 0.395101 | True | golden_retriever | 3.721150e-01 | True | Labrador_retriever | 1.487850e-01 | True |
| 123 | 668226093875376128 | https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg | 1 | trombone | 0.390339 | False | cornet | 3.141490e-01 | False | French_horn | 2.551820e-01 | False |
| 124 | 668237644992782336 | https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg | 1 | chow | 0.809320 | True | minivan | 7.131070e-02 | False | Pekinese | 3.786960e-02 | True |
| 125 | 668248472370458624 | https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg | 1 | Chihuahua | 0.734547 | True | miniature_pinscher | 6.829440e-02 | True | toy_terrier | 4.636710e-02 | True |
| 126 | 668256321989451776 | https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg | 1 | canoe | 0.407683 | False | paddle | 1.155500e-01 | False | Pembroke | 9.442940e-02 | True |
| 127 | 668268907921326080 | https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg | 1 | Pembroke | 0.484830 | True | Cardigan | 4.253030e-01 | True | basenji | 1.475350e-02 | True |
| 128 | 668274247790391296 | https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg | 1 | soft-coated_wheaten_terrier | 0.406374 | True | Lakeland_terrier | 2.638540e-01 | True | toy_poodle | 1.508440e-01 | True |
| 129 | 668286279830867968 | https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg | 1 | golden_retriever | 0.215944 | True | basset | 1.892140e-01 | True | Cardigan | 1.130100e-01 | True |
| 130 | 668291999406125056 | https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg | 1 | web_site | 0.995535 | False | skunk | 1.363490e-03 | False | badger | 6.856500e-04 | False |
| 131 | 668297328638447616 | https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg | 1 | king_penguin | 0.606747 | False | ice_bear | 2.642210e-01 | False | Eskimo_dog | 3.278380e-02 | True |
| 132 | 668466899341221888 | https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg | 1 | shopping_basket | 0.398361 | False | hamper | 3.632220e-01 | False | bassinet | 8.417350e-02 | False |
| 133 | 668480044826800133 | https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg | 1 | Arctic_fox | 0.119243 | False | Labrador_retriever | 9.996480e-02 | True | pug | 8.671650e-02 | True |
| 134 | 668484198282485761 | https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg | 1 | standard_poodle | 0.587372 | True | Bedlington_terrier | 1.824110e-01 | True | Afghan_hound | 4.096800e-02 | True |
| 135 | 668496999348633600 | https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg | 1 | Staffordshire_bullterrier | 0.412879 | True | miniature_pinscher | 1.614880e-01 | True | American_Staffordshire_terrier | 1.124950e-01 | True |
| 136 | 668507509523615744 | https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg | 1 | basenji | 0.055379 | True | Shetland_sheepdog | 5.432210e-02 | True | whippet | 5.191340e-02 | True |
| 137 | 668528771708952576 | https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg | 1 | Labrador_retriever | 0.195835 | True | kuvasz | 1.216070e-01 | True | English_setter | 8.146440e-02 | True |
| 138 | 668537837512433665 | https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg | 1 | Lakeland_terrier | 0.372988 | True | toy_poodle | 2.504450e-01 | True | Chihuahua | 1.897370e-01 | True |
| 139 | 668542336805281792 | https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg | 1 | American_Staffordshire_terrier | 0.267695 | True | French_bulldog | 2.540500e-01 | True | Staffordshire_bullterrier | 2.123810e-01 | True |
| 140 | 668544745690562560 | https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg | 1 | bearskin | 0.427870 | False | bow | 2.588580e-01 | False | panpipe | 2.156260e-02 | False |
| 141 | 668567822092664832 | https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg | 1 | Shih-Tzu | 0.985649 | True | Lhasa | 7.078320e-03 | True | Pekinese | 3.053230e-03 | True |
| 142 | 668614819948453888 | https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg | 1 | bustard | 0.380772 | False | pelican | 1.005540e-01 | False | crane | 8.471350e-02 | False |
| 143 | 668620235289837568 | https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg | 1 | crash_helmet | 0.757942 | False | toaster | 3.749680e-02 | False | mouse | 2.727090e-02 | False |
| 144 | 668623201287675904 | https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg | 4 | Chihuahua | 0.708163 | True | Pomeranian | 9.137190e-02 | True | titi | 6.732550e-02 | False |
| 145 | 668625577880875008 | https://pbs.twimg.com/media/CUdvambWoAA007z.jpg | 1 | ox | 0.071536 | False | groenendael | 5.445480e-02 | True | Angora | 4.502800e-02 | False |
| 146 | 668627278264475648 | https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg | 1 | French_bulldog | 0.965403 | True | pug | 8.603810e-03 | True | Boston_bull | 8.003560e-03 | True |
| 147 | 668631377374486528 | https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg | 1 | miniature_schnauzer | 0.904549 | True | Australian_terrier | 2.252940e-02 | True | silky_terrier | 1.524320e-02 | True |
| 148 | 668633411083464705 | https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg | 1 | Pekinese | 0.589011 | True | Shih-Tzu | 3.909870e-01 | True | Japanese_spaniel | 3.310350e-03 | True |
| 149 | 668636665813057536 | https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg | 1 | komondor | 0.999956 | True | llama | 4.309810e-05 | False | ram | 2.160900e-07 | False |
| 150 | 668641109086707712 | https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg | 1 | vacuum | 0.432594 | False | pug | 1.463110e-01 | True | toilet_tissue | 2.450030e-02 | False |
| 151 | 668643542311546881 | https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg | 1 | common_iguana | 0.483972 | False | frilled_lizard | 1.113770e-01 | False | sandbar | 7.898340e-02 | False |
| 152 | 668645506898350081 | https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg | 1 | ski_mask | 0.302854 | False | knee_pad | 9.688120e-02 | False | balance_beam | 8.407560e-02 | False |
| 153 | 668655139528511488 | https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg | 1 | beagle | 0.319110 | True | Italian_greyhound | 1.033380e-01 | True | basenji | 9.193000e-02 | True |
| 154 | 668779399630725120 | https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg | 1 | Chesapeake_Bay_retriever | 0.285508 | True | Weimaraner | 1.468320e-01 | True | black-footed_ferret | 6.086480e-02 | False |
| 155 | 668815180734689280 | https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg | 1 | redbone | 0.461172 | True | Italian_greyhound | 2.707330e-01 | True | miniature_pinscher | 1.097520e-01 | True |
| 156 | 668826086256599040 | https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg | 1 | malinois | 0.640185 | True | Irish_terrier | 1.537000e-01 | True | Rhodesian_ridgeback | 6.845650e-02 | True |
| 157 | 668852170888998912 | https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg | 1 | golden_retriever | 0.903529 | True | Tibetan_mastiff | 4.149700e-02 | True | kuvasz | 2.250050e-02 | True |
| 158 | 668872652652679168 | https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg | 1 | teddy | 0.413379 | False | pillow | 3.256230e-01 | False | miniature_schnauzer | 3.553660e-02 | True |
| 159 | 668892474547511297 | https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg | 1 | kelpie | 0.421979 | True | collie | 2.270600e-01 | True | Cardigan | 1.682110e-01 | True |
| 160 | 668902994700836864 | https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg | 1 | Brittany_spaniel | 0.828425 | True | Ibizan_hound | 4.308200e-02 | True | Blenheim_spaniel | 2.800360e-02 | True |
| 161 | 668932921458302977 | https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg | 1 | standard_poodle | 0.237638 | True | Old_English_sheepdog | 1.955730e-01 | True | toy_poodle | 1.446580e-01 | True |
| 162 | 668955713004314625 | https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg | 1 | cocker_spaniel | 0.367492 | True | Lakeland_terrier | 2.726210e-01 | True | soft-coated_wheaten_terrier | 6.700630e-02 | True |
| 163 | 668960084974809088 | https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg | 1 | shower_curtain | 0.226309 | False | Chesapeake_Bay_retriever | 1.658780e-01 | True | bathtub | 5.672610e-02 | False |
| 164 | 668975677807423489 | https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg | 1 | basset | 0.605437 | True | Welsh_springer_spaniel | 1.847830e-01 | True | Saint_Bernard | 1.162990e-01 | True |
| 165 | 668979806671884288 | https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg | 1 | golden_retriever | 0.608537 | True | Irish_setter | 9.707800e-02 | True | redbone | 7.602220e-02 | True |
| 166 | 668981893510119424 | https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg | 1 | jellyfish | 0.447246 | False | coral_reef | 2.386250e-01 | False | goldfish | 4.022690e-02 | False |
| 167 | 668986018524233728 | https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg | 1 | doormat | 0.976103 | False | Chihuahua | 5.639720e-03 | True | Norfolk_terrier | 3.912650e-03 | True |
| 168 | 668988183816871936 | https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg | 1 | Arabian_camel | 0.999614 | False | bison | 2.280900e-04 | False | llama | 6.717870e-05 | False |
| 169 | 668989615043424256 | https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg | 1 | pug | 0.917326 | True | waffle_iron | 1.491750e-02 | False | Chihuahua | 1.352440e-02 | True |
| 170 | 668992363537309700 | https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg | 1 | lynx | 0.287506 | False | tabby | 2.060480e-01 | False | koala | 8.141930e-02 | False |
| 171 | 668994913074286592 | https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg | 1 | hog | 0.113789 | False | English_springer | 8.976330e-02 | True | French_bulldog | 8.218640e-02 | True |
| 172 | 669000397445533696 | https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg | 1 | Pembroke | 0.822940 | True | Cardigan | 1.770350e-01 | True | basenji | 2.335260e-05 | True |
| 173 | 669006782128353280 | https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg | 1 | Chihuahua | 0.127178 | True | Italian_greyhound | 5.421470e-02 | True | pillow | 4.859160e-02 | False |
| 174 | 669015743032369152 | https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg | 1 | comic_book | 0.275927 | False | bib | 1.735160e-01 | False | jersey | 7.391100e-02 | False |
| 175 | 669037058363662336 | https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg | 1 | Chihuahua | 0.803528 | True | Pomeranian | 5.387110e-02 | True | chow | 3.225740e-02 | True |
| 176 | 669203728096960512 | https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg | 1 | pug | 0.910452 | True | French_bulldog | 5.508960e-02 | True | Chihuahua | 1.489660e-02 | True |
| 177 | 669214165781868544 | https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg | 1 | minivan | 0.435396 | False | police_van | 3.101430e-01 | False | minibus | 6.820100e-02 | False |
| 178 | 669216679721873412 | https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg | 1 | golden_retriever | 0.992758 | True | Irish_setter | 3.379040e-03 | True | Saluki | 1.229630e-03 | True |
| 179 | 669324657376567296 | https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg | 1 | seashore | 0.201659 | False | Cardigan | 1.315440e-01 | True | sandbar | 1.014300e-01 | False |
| 180 | 669327207240699904 | https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg | 1 | golden_retriever | 0.919584 | True | Labrador_retriever | 4.966950e-02 | True | kuvasz | 1.021610e-02 | True |
| 181 | 669328503091937280 | https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg | 1 | Siberian_husky | 0.424202 | True | Eskimo_dog | 2.376600e-01 | True | malamute | 5.257170e-02 | True |
| 182 | 669351434509529089 | https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg | 1 | cuirass | 0.756829 | False | breastplate | 2.335200e-01 | False | bulletproof_vest | 3.811880e-03 | False |
| 183 | 669353438988365824 | https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg | 1 | teddy | 0.379656 | False | Pembroke | 2.123430e-01 | True | chow | 9.699530e-02 | True |
| 184 | 669354382627049472 | https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg | 1 | Chihuahua | 0.973990 | True | French_bulldog | 1.083200e-02 | True | Pekinese | 2.098650e-03 | True |
| 185 | 669359674819481600 | https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg | 1 | Labrador_retriever | 0.367818 | True | German_short-haired_pointer | 2.806420e-01 | True | Chesapeake_Bay_retriever | 1.842460e-01 | True |
| 186 | 669363888236994561 | https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg | 1 | golden_retriever | 0.539004 | True | Irish_setter | 4.065500e-01 | True | cocker_spaniel | 4.148440e-02 | True |
| 187 | 669367896104181761 | https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg | 1 | basset | 0.749394 | True | beagle | 1.335790e-01 | True | Welsh_springer_spaniel | 3.019840e-02 | True |
| 188 | 669371483794317312 | https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg | 1 | Brabancon_griffon | 0.483268 | True | miniature_pinscher | 3.074650e-01 | True | redbone | 7.052380e-02 | True |
| 189 | 669375718304980992 | https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg | 1 | Airedale | 0.168762 | True | Norfolk_terrier | 1.074790e-01 | True | Lakeland_terrier | 9.784590e-02 | True |
| 190 | 669393256313184256 | https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg | 1 | cocker_spaniel | 0.359843 | True | Blenheim_spaniel | 1.395190e-01 | True | toy_poodle | 1.327460e-01 | True |
| 191 | 669564461267722241 | https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg | 1 | toy_poodle | 0.623685 | True | miniature_poodle | 2.599200e-01 | True | standard_poodle | 8.252970e-02 | True |
| 192 | 669567591774625800 | https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg | 1 | Chihuahua | 0.980511 | True | toy_terrier | 9.166440e-03 | True | miniature_pinscher | 2.658510e-03 | True |
| 193 | 669571471778410496 | https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg | 1 | minivan | 0.873488 | False | pickup | 4.125930e-02 | False | beach_wagon | 1.540050e-02 | False |
| 194 | 669573570759163904 | https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg | 1 | West_Highland_white_terrier | 0.946828 | True | miniature_schnauzer | 2.234360e-02 | True | cairn | 9.461660e-03 | True |
| 195 | 669583744538451968 | https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg | 1 | candle | 0.174315 | False | lampshade | 1.204070e-01 | False | plunger | 7.209940e-02 | False |
| 196 | 669597912108789760 | https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg | 1 | Eskimo_dog | 0.595665 | True | Siberian_husky | 2.144740e-01 | True | white_wolf | 1.472350e-01 | False |
| 197 | 669603084620980224 | https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg | 1 | Maltese_dog | 0.659619 | True | Tibetan_terrier | 1.935390e-01 | True | Shih-Tzu | 3.932710e-02 | True |
| 198 | 669625907762618368 | https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg | 1 | seat_belt | 0.874502 | False | golden_retriever | 5.540810e-02 | True | Labrador_retriever | 2.685430e-02 | True |
| 199 | 669661792646373376 | https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg | 1 | weasel | 0.262802 | False | Siamese_cat | 1.482630e-01 | False | hamster | 1.163740e-01 | False |
| 200 | 669680153564442624 | https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg | 1 | dalmatian | 0.141257 | True | borzoi | 1.377440e-01 | True | Labrador_retriever | 1.037920e-01 | True |
| 201 | 669682095984410625 | https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg | 1 | Christmas_stocking | 0.188397 | False | studio_couch | 8.688670e-02 | False | bookcase | 8.259860e-02 | False |
| 202 | 669683899023405056 | https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg | 1 | Pomeranian | 0.998275 | True | Chihuahua | 6.054760e-04 | True | Pekinese | 5.156880e-04 | True |
| 203 | 669749430875258880 | https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg | 1 | washbasin | 0.245794 | False | toilet_seat | 1.094200e-01 | False | paper_towel | 1.056640e-01 | False |
| 204 | 669753178989142016 | https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg | 1 | Pembroke | 0.858494 | True | hamster | 2.631880e-02 | False | Shetland_sheepdog | 2.240520e-02 | True |
| 205 | 669923323644657664 | https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg | 1 | car_mirror | 0.343063 | False | seat_belt | 1.102890e-01 | False | wing | 8.014850e-02 | False |
| 206 | 669926384437997569 | https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg | 1 | Pomeranian | 0.984231 | True | keeshond | 1.023110e-02 | True | papillon | 2.218970e-03 | True |
| 207 | 669942763794931712 | https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg | 1 | vizsla | 0.743216 | True | redbone | 2.172820e-01 | True | Rhodesian_ridgeback | 2.847350e-02 | True |
| 208 | 669970042633789440 | https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg | 1 | miniature_pinscher | 0.734744 | True | Rottweiler | 1.310660e-01 | True | Doberman | 8.150940e-02 | True |
| 209 | 669972011175813120 | https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg | 1 | teddy | 0.953071 | False | koala | 7.026720e-03 | False | fur_coat | 5.368170e-03 | False |
| 210 | 669993076832759809 | https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg | 1 | piggy_bank | 0.176320 | False | hair_spray | 9.748700e-02 | False | toy_poodle | 8.650160e-02 | True |
| 211 | 670003130994700288 | https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg | 1 | beagle | 0.375313 | True | Saint_Bernard | 1.749110e-01 | True | English_foxhound | 1.158880e-01 | True |
| 212 | 670037189829525505 | https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg | 1 | pot | 0.273767 | False | tray | 9.288840e-02 | False | doormat | 5.072790e-02 | False |
| 213 | 670040295598354432 | https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg | 1 | web_site | 0.901552 | False | borzoi | 2.665960e-02 | True | Chihuahua | 1.243760e-02 | True |
| 214 | 670046952931721218 | https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg | 1 | Blenheim_spaniel | 0.998335 | True | beagle | 6.472890e-04 | True | Brittany_spaniel | 3.918660e-04 | True |
| 215 | 670055038660800512 | https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg | 1 | snail | 0.563631 | False | slug | 2.966490e-01 | False | bolete | 3.183920e-02 | False |
| 216 | 670061506722140161 | https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg | 1 | Italian_greyhound | 0.329339 | True | American_Staffordshire_terrier | 3.052940e-01 | True | whippet | 1.116860e-01 | True |
| 217 | 670069087419133954 | https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg | 1 | boathouse | 0.313829 | False | birdhouse | 1.383310e-01 | False | ashcan | 4.567320e-02 | False |
| 218 | 670073503555706880 | https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg | 1 | malamute | 0.601886 | True | Siberian_husky | 3.401060e-01 | True | Eskimo_dog | 5.004130e-02 | True |
| 219 | 670079681849372674 | https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg | 1 | mud_turtle | 0.157477 | False | terrapin | 1.318460e-01 | False | box_turtle | 6.067820e-02 | False |
| 220 | 670086499208155136 | https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg | 1 | German_short-haired_pointer | 0.273492 | True | Staffordshire_bullterrier | 1.329440e-01 | True | bluetick | 1.245620e-01 | True |
| 221 | 670093938074779648 | https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg | 1 | toy_poodle | 0.383346 | True | miniature_poodle | 1.536780e-01 | True | chow | 1.385430e-01 | True |
| 222 | 670290420111441920 | https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg | 1 | Chihuahua | 0.368876 | True | Pomeranian | 2.821020e-01 | True | papillon | 1.787950e-01 | True |
| 223 | 670303360680108032 | https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg | 1 | Shetland_sheepdog | 0.380278 | True | Cardigan | 3.428060e-01 | True | guinea_pig | 1.562490e-01 | False |
| 224 | 670319130621435904 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 225 | 670338931251150849 | https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg | 1 | cairn | 0.245033 | True | West_Highland_white_terrier | 1.377090e-01 | True | miniature_schnauzer | 8.917250e-02 | True |
| 226 | 670361874861563904 | https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg | 1 | platypus | 0.974075 | False | spotted_salamander | 1.106760e-02 | False | bison | 3.896910e-03 | False |
| 227 | 670374371102445568 | https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg | 1 | English_springer | 0.974936 | True | English_setter | 1.166130e-02 | True | cocker_spaniel | 2.688990e-03 | True |
| 228 | 670385711116361728 | https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg | 1 | whippet | 0.178027 | True | Chesapeake_Bay_retriever | 1.059690e-01 | True | beagle | 7.871970e-02 | True |
| 229 | 670403879788544000 | https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg | 1 | pug | 0.802223 | True | French_bulldog | 1.725570e-01 | True | bull_mastiff | 7.162800e-03 | True |
| 230 | 670408998013820928 | https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg | 1 | ping-pong_ball | 0.999945 | False | tennis_ball | 1.763430e-05 | False | racket | 1.470730e-05 | False |
| 231 | 670411370698022913 | https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg | 1 | Maltese_dog | 0.584397 | True | miniature_schnauzer | 6.420080e-02 | True | toy_poodle | 6.086770e-02 | True |
| 232 | 670417414769758208 | https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg | 1 | sea_urchin | 0.493257 | False | porcupine | 4.605650e-01 | False | cardoon | 8.145870e-03 | False |
| 233 | 670420569653809152 | https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg | 1 | bow_tie | 0.268759 | False | cardigan | 1.539570e-01 | False | wig | 7.229490e-02 | False |
| 234 | 670421925039075328 | https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg | 1 | Chihuahua | 0.275793 | True | corn | 7.359580e-02 | False | bolete | 5.490510e-02 | False |
| 235 | 670427002554466305 | https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg | 1 | seat_belt | 0.952258 | False | toy_terrier | 3.887160e-02 | True | beagle | 3.226440e-03 | True |
| 236 | 670428280563085312 | https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg | 1 | chow | 0.335269 | True | golden_retriever | 3.058500e-01 | True | Tibetan_mastiff | 6.332530e-02 | True |
| 237 | 670433248821026816 | https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg | 1 | window_shade | 0.583427 | False | giant_schnauzer | 6.221480e-02 | True | window_screen | 3.994100e-02 | False |
| 238 | 670434127938719744 | https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg | 1 | jack-o'-lantern | 0.919140 | False | Chesapeake_Bay_retriever | 2.735100e-02 | True | Labrador_retriever | 2.008090e-02 | True |
| 239 | 670435821946826752 | https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg | 1 | sorrel | 0.460370 | False | basenji | 1.357670e-01 | True | Cardigan | 9.917430e-02 | True |
| 240 | 670442337873600512 | https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg | 1 | Sussex_spaniel | 0.403552 | True | otterhound | 2.563020e-01 | True | Irish_terrier | 1.873150e-01 | True |
| 241 | 670444955656130560 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 242 | 670449342516494336 | https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg | 1 | peacock | 0.999924 | False | European_gallinule | 2.987300e-05 | False | agama | 2.150760e-05 | False |
| 243 | 670452855871037440 | https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg | 1 | Arctic_fox | 0.188174 | False | indri | 1.235840e-01 | False | malamute | 8.037950e-02 | True |
| 244 | 670465786746662913 | https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg | 1 | axolotl | 0.611558 | False | tailed_frog | 1.864840e-01 | False | common_newt | 7.869400e-02 | False |
| 245 | 670468609693655041 | https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg | 1 | minivan | 0.730152 | False | beach_wagon | 7.866140e-02 | False | car_wheel | 6.434580e-02 | False |
| 246 | 670474236058800128 | https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg | 1 | wool | 0.070076 | False | siamang | 6.253600e-02 | False | gorilla | 5.889360e-02 | False |
| 247 | 670668383499735048 | https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg | 1 | banana | 0.107317 | False | orange | 9.966220e-02 | False | bagel | 8.903260e-02 | False |
| 248 | 670676092097810432 | https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg | 1 | Dandie_Dinmont | 0.676102 | True | West_Highland_white_terrier | 4.082560e-02 | True | clumber | 3.953330e-02 | True |
| 249 | 670679630144274432 | https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg | 1 | Ibizan_hound | 0.342734 | True | Brittany_spaniel | 2.290650e-01 | True | Chihuahua | 1.040290e-01 | True |
| 250 | 670691627984359425 | https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg | 1 | Shetland_sheepdog | 0.071124 | True | home_theater | 6.839780e-02 | False | American_Staffordshire_terrier | 6.696390e-02 | True |
| 251 | 670704688707301377 | https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg | 1 | Norwich_terrier | 0.419838 | True | cairn | 3.518760e-01 | True | Norfolk_terrier | 5.109370e-02 | True |
| 252 | 670717338665226240 | https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg | 1 | Pomeranian | 0.368161 | True | Pekinese | 3.509730e-01 | True | golden_retriever | 1.149020e-01 | True |
| 253 | 670727704916926465 | https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg | 1 | wood_rabbit | 0.368562 | False | tabby | 3.096750e-01 | False | Egyptian_cat | 1.549140e-01 | False |
| 254 | 670733412878163972 | https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg | 1 | dhole | 0.350416 | False | hare | 2.366610e-01 | False | wood_rabbit | 9.113280e-02 | False |
| 255 | 670755717859713024 | https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg | 1 | keeshond | 0.994065 | True | Norwegian_elkhound | 1.827480e-03 | True | cairn | 1.821310e-03 | True |
| 256 | 670764103623966721 | https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg | 1 | Norfolk_terrier | 0.172850 | True | golden_retriever | 7.270220e-02 | True | television | 3.749420e-02 | False |
| 257 | 670778058496974848 | https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg | 1 | pug | 0.776612 | True | Brabancon_griffon | 1.120320e-01 | True | boxer | 3.905140e-02 | True |
| 258 | 670780561024270336 | https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg | 1 | Labrador_retriever | 0.244889 | True | American_black_bear | 5.699350e-02 | False | brown_bear | 5.399260e-02 | False |
| 259 | 670782429121134593 | https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg | 1 | Chihuahua | 0.952963 | True | French_bulldog | 3.657470e-02 | True | Boston_bull | 1.977400e-03 | True |
| 260 | 670783437142401025 | https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg | 1 | lacewing | 0.381955 | False | sulphur_butterfly | 1.068100e-01 | False | leafhopper | 6.834690e-02 | False |
| 261 | 670786190031921152 | https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg | 1 | dingo | 0.777124 | False | Pembroke | 1.274380e-01 | True | Cardigan | 2.400660e-02 | True |
| 262 | 670789397210615808 | https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg | 1 | beagle | 0.295966 | True | basset | 1.435270e-01 | True | bluetick | 1.389920e-01 | True |
| 263 | 670792680469889025 | https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg | 1 | brown_bear | 0.882426 | False | toy_poodle | 3.135500e-02 | True | miniature_poodle | 2.574340e-02 | True |
| 264 | 670797304698376195 | https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg | 1 | Pembroke | 0.472197 | True | beagle | 9.093800e-02 | True | German_shepherd | 6.436600e-02 | True |
| 265 | 670803562457407488 | https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg | 1 | basenji | 0.344101 | True | Ibizan_hound | 2.102820e-01 | True | toy_terrier | 1.962790e-01 | True |
| 266 | 670804601705242624 | https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg | 1 | Pomeranian | 0.868560 | True | Pekinese | 9.012920e-02 | True | chow | 2.172210e-02 | True |
| 267 | 670807719151067136 | https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg | 1 | Old_English_sheepdog | 0.958035 | True | Sealyham_terrier | 1.389220e-02 | True | Border_collie | 4.601140e-03 | True |
| 268 | 670811965569282048 | https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg | 1 | basset | 0.994090 | True | Walker_hound | 3.972680e-03 | True | beagle | 1.406190e-03 | True |
| 269 | 670815497391357952 | https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg | 1 | American_Staffordshire_terrier | 0.919714 | True | Staffordshire_bullterrier | 7.343020e-02 | True | bull_mastiff | 9.056790e-04 | True |
| 270 | 670822709593571328 | https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg | 1 | web_site | 0.993887 | False | Chihuahua | 1.251520e-03 | True | menu | 5.987510e-04 | False |
| 271 | 670823764196741120 | https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg | 1 | Labrador_retriever | 0.947453 | True | German_short-haired_pointer | 1.700060e-02 | True | Weimaraner | 1.543210e-02 | True |
| 272 | 670826280409919488 | https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg | 1 | scorpion | 0.927956 | False | tarantula | 2.163100e-02 | False | wolf_spider | 1.483750e-02 | False |
| 273 | 670832455012716544 | https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg | 1 | malinois | 0.317607 | True | Norwegian_elkhound | 2.749010e-01 | True | bathing_cap | 1.146430e-01 | False |
| 274 | 670833812859932673 | https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg | 1 | Pekinese | 0.609853 | True | Persian_cat | 2.654420e-01 | False | Japanese_spaniel | 2.746040e-02 | True |
| 275 | 670838202509447168 | https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg | 1 | flamingo | 0.992710 | False | coral_fungus | 3.490810e-03 | False | stinkhorn | 1.858950e-03 | False |
| 276 | 670840546554966016 | https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg | 1 | Shih-Tzu | 0.963622 | True | Lhasa | 1.601670e-02 | True | guinea_pig | 7.931920e-03 | False |
| 277 | 670842764863651840 | https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg | 1 | microphone | 0.096063 | False | accordion | 9.407470e-02 | False | drumstick | 6.111280e-02 | False |
| 278 | 670995969505435648 | https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg | 1 | redbone | 0.866221 | True | beagle | 6.119400e-02 | True | Rhodesian_ridgeback | 2.428450e-02 | True |
| 279 | 671109016219725825 | https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg | 1 | basenji | 0.855959 | True | beagle | 3.672310e-02 | True | toy_terrier | 2.925780e-02 | True |
| 280 | 671115716440031232 | https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg | 1 | malinois | 0.406341 | True | kelpie | 1.433660e-01 | True | dingo | 1.298020e-01 | False |
| 281 | 671122204919246848 | https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg | 1 | goose | 0.351957 | False | Chihuahua | 1.012280e-01 | True | hen | 6.581760e-02 | False |
| 282 | 671134062904504320 | https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg | 1 | Shih-Tzu | 0.180380 | True | golden_retriever | 1.801940e-01 | True | Labrador_retriever | 1.736560e-01 | True |
| 283 | 671138694582165504 | https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg | 1 | Samoyed | 0.587342 | True | Great_Pyrenees | 2.689520e-01 | True | Pekinese | 9.052750e-02 | True |
| 284 | 671141549288370177 | https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg | 1 | guinea_pig | 0.387728 | False | wood_rabbit | 1.716810e-01 | False | borzoi | 7.535770e-02 | True |
| 285 | 671147085991960577 | https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg | 1 | Yorkshire_terrier | 0.467202 | True | cairn | 4.401220e-01 | True | silky_terrier | 5.869010e-02 | True |
| 286 | 671151324042559489 | https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg | 1 | Rottweiler | 0.781201 | True | black-and-tan_coonhound | 6.120650e-02 | True | kelpie | 4.885570e-02 | True |
| 287 | 671154572044468225 | https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg | 1 | Labrador_retriever | 0.495047 | True | Chesapeake_Bay_retriever | 3.501880e-01 | True | golden_retriever | 1.424000e-01 | True |
| 288 | 671159727754231808 | https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg | 1 | pitcher | 0.117446 | False | sunglasses | 6.248650e-02 | False | mask | 5.951670e-02 | False |
| 289 | 671163268581498880 | https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg | 1 | African_hunting_dog | 0.733025 | False | plow | 1.193770e-01 | False | Scottish_deerhound | 2.698290e-02 | True |
| 290 | 671166507850801152 | https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg | 1 | refrigerator | 0.829772 | False | toilet_seat | 3.008330e-02 | False | shower_curtain | 1.546070e-02 | False |
| 291 | 671182547775299584 | https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg | 1 | Rottweiler | 0.331179 | True | kelpie | 2.186010e-01 | True | Appenzeller | 1.825200e-01 | True |
| 292 | 671186162933985280 | https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg | 1 | Chihuahua | 0.319106 | True | whippet | 1.691340e-01 | True | toy_terrier | 1.258150e-01 | True |
| 293 | 671347597085433856 | https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg | 1 | picket_fence | 0.382918 | False | rain_barrel | 1.088090e-01 | False | plastic_bag | 3.887820e-02 | False |
| 294 | 671355857343524864 | https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg | 1 | miniature_poodle | 0.313811 | True | toy_poodle | 1.655850e-01 | True | Irish_terrier | 5.609410e-02 | True |
| 295 | 671357843010908160 | https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg | 1 | Italian_greyhound | 0.831757 | True | toy_terrier | 4.330580e-02 | True | Chihuahua | 3.677300e-02 | True |
| 296 | 671362598324076544 | https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg | 1 | tub | 0.393616 | False | bathtub | 3.835220e-01 | False | swimming_trunks | 7.730080e-02 | False |
| 297 | 671390180817915904 | https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg | 1 | zebra | 0.997673 | False | tiger | 8.372680e-04 | False | prairie_chicken | 5.745670e-04 | False |
| 298 | 671485057807351808 | https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg | 1 | Samoyed | 0.627901 | True | Great_Pyrenees | 2.764210e-01 | True | kuvasz | 5.787350e-02 | True |
| 299 | 671486386088865792 | https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg | 1 | German_shepherd | 0.827035 | True | kelpie | 8.764770e-02 | True | red_wolf | 3.121790e-02 | False |
| 300 | 671488513339211776 | https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg | 1 | hermit_crab | 0.528761 | False | snail | 1.856440e-01 | False | shower_curtain | 6.636050e-02 | False |
| 301 | 671497587707535361 | https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg | 1 | swing | 0.089165 | False | paddle | 8.074690e-02 | False | bathing_cap | 6.569400e-02 | False |
| 302 | 671504605491109889 | https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg | 1 | toy_poodle | 0.259115 | True | bath_towel | 1.776690e-01 | False | Maltese_dog | 7.171250e-02 | True |
| 303 | 671511350426865664 | https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg | 1 | hermit_crab | 0.625409 | False | tick | 1.273330e-01 | False | snail | 9.791590e-02 | False |
| 304 | 671518598289059840 | https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg | 1 | Lakeland_terrier | 0.428275 | True | wire-haired_fox_terrier | 1.114720e-01 | True | toy_poodle | 1.050160e-01 | True |
| 305 | 671520732782923777 | https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg | 1 | Pomeranian | 0.551031 | True | Pekinese | 1.352620e-01 | True | gibbon | 6.155740e-02 | False |
| 306 | 671528761649688577 | https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg | 1 | Doberman | 0.782626 | True | black-and-tan_coonhound | 1.096780e-01 | True | Gordon_setter | 5.211020e-02 | True |
| 307 | 671533943490011136 | https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg | 1 | hen | 0.556524 | False | cock | 4.420330e-01 | False | black_swan | 1.180750e-03 | False |
| 308 | 671536543010570240 | https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg | 1 | pug | 0.537652 | True | bull_mastiff | 2.206170e-01 | True | French_bulldog | 6.829650e-02 | True |
| 309 | 671538301157904385 | https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg | 1 | park_bench | 0.194211 | False | water_bottle | 7.186960e-02 | False | beacon | 5.343310e-02 | False |
| 310 | 671542985629241344 | https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg | 1 | Shetland_sheepdog | 0.980339 | True | collie | 6.693000e-03 | True | papillon | 6.157010e-03 | True |
| 311 | 671544874165002241 | https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg | 1 | feather_boa | 0.240858 | False | wig | 8.594620e-02 | False | wool | 4.067350e-02 | False |
| 312 | 671547767500775424 | https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg | 2 | Loafer | 0.255088 | False | platypus | 9.001910e-02 | False | cowboy_boot | 6.653600e-02 | False |
| 313 | 671561002136281088 | https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg | 1 | Gordon_setter | 0.469373 | True | black-and-tan_coonhound | 2.708930e-01 | True | Rottweiler | 1.532330e-01 | True |
| 314 | 671729906628341761 | https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg | 1 | kuvasz | 0.431469 | True | Samoyed | 1.171220e-01 | True | white_wolf | 9.006660e-02 | False |
| 315 | 671735591348891648 | https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg | 2 | stone_wall | 0.271121 | False | Irish_wolfhound | 6.307820e-02 | True | poncho | 4.822590e-02 | False |
| 316 | 671743150407421952 | https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg | 1 | toy_poodle | 0.419427 | True | miniature_poodle | 2.370670e-01 | True | swing | 1.041930e-01 | False |
| 317 | 671744970634719232 | https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg | 1 | ice_bear | 0.251193 | False | ram | 2.138390e-01 | False | Arctic_fox | 8.155140e-02 | False |
| 318 | 671763349865160704 | https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg | 1 | prayer_rug | 0.445334 | False | doormat | 2.753110e-01 | False | bib | 4.881320e-02 | False |
| 319 | 671768281401958400 | https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg | 2 | Chihuahua | 0.500373 | True | French_bulldog | 1.127960e-01 | True | Italian_greyhound | 6.289270e-02 | True |
| 320 | 671789708968640512 | https://pbs.twimg.com/tweet_video_thumb/CVKtH-... | 1 | dalmatian | 0.114259 | True | teddy | 6.227520e-02 | False | steam_locomotive | 4.970020e-02 | False |
| 321 | 671855973984772097 | https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg | 1 | chimpanzee | 0.636031 | False | gorilla | 9.875150e-02 | False | fountain | 3.175550e-02 | False |
| 322 | 671866342182637568 | https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg | 1 | Labrador_retriever | 0.875614 | True | Chihuahua | 3.218220e-02 | True | golden_retriever | 1.723250e-02 | True |
| 323 | 671874878652489728 | https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg | 1 | china_cabinet | 0.996031 | False | entertainment_center | 1.985890e-03 | False | bookcase | 1.651810e-03 | False |
| 324 | 671879137494245376 | https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg | 1 | bee_eater | 0.302648 | False | toucan | 2.196460e-01 | False | chickadee | 1.566870e-01 | False |
| 325 | 671882082306625538 | https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg | 1 | ski_mask | 0.968325 | False | mask | 2.186270e-02 | False | abaya | 5.479450e-03 | False |
| 326 | 671891728106971137 | https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg | 1 | Labrador_retriever | 0.567933 | True | golden_retriever | 3.494010e-01 | True | seat_belt | 6.939620e-02 | False |
| 327 | 671896809300709376 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 328 | 672068090318987265 | https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg | 1 | pug | 0.863385 | True | shopping_cart | 1.257460e-01 | False | Border_terrier | 2.972460e-03 | True |
| 329 | 672082170312290304 | https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg | 1 | hamster | 0.132440 | False | toy_poodle | 1.239620e-01 | True | bubble | 5.621240e-02 | False |
| 330 | 672095186491711488 | https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg | 1 | pug | 0.794087 | True | French_bulldog | 1.407960e-01 | True | bull_mastiff | 4.468110e-02 | True |
| 331 | 672125275208069120 | https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg | 1 | tennis_ball | 0.999834 | False | golden_retriever | 8.675670e-05 | True | racket | 5.332190e-05 | False |
| 332 | 672139350159835138 | https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg | 1 | Rottweiler | 0.290992 | True | American_black_bear | 2.381200e-01 | False | chimpanzee | 1.155410e-01 | False |
| 333 | 672160042234327040 | https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg | 1 | pug | 0.561027 | True | French_bulldog | 2.221140e-01 | True | Labrador_retriever | 6.545560e-02 | True |
| 334 | 672169685991993344 | https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg | 1 | cocker_spaniel | 0.991011 | True | Sussex_spaniel | 4.032130e-03 | True | miniature_poodle | 1.275640e-03 | True |
| 335 | 672205392827572224 | https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg | 1 | carton | 0.952613 | False | crate | 3.537620e-02 | False | pug | 3.266910e-03 | True |
| 336 | 672222792075620352 | https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg | 1 | beagle | 0.958178 | True | basset | 9.117310e-03 | True | Italian_greyhound | 7.731050e-03 | True |
| 337 | 672231046314901505 | https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg | 1 | killer_whale | 0.823919 | False | grey_whale | 3.660060e-02 | False | hammerhead | 2.952190e-02 | False |
| 338 | 672239279297454080 | https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg | 1 | pug | 0.332536 | True | French_bulldog | 2.581240e-01 | True | bull_mastiff | 1.208730e-01 | True |
| 339 | 672245253877968896 | https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg | 1 | Chihuahua | 0.718944 | True | badger | 1.785460e-01 | False | toy_terrier | 3.710310e-02 | True |
| 340 | 672248013293752320 | https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg | 1 | Irish_terrier | 0.413173 | True | Airedale | 3.356160e-01 | True | toy_poodle | 2.795230e-02 | True |
| 341 | 672254177670729728 | https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg | 1 | pug | 0.979487 | True | French_bulldog | 1.685040e-02 | True | Norwegian_elkhound | 1.617540e-03 | True |
| 342 | 672256522047614977 | https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg | 1 | ostrich | 0.999004 | False | Arabian_camel | 5.120290e-04 | False | llama | 1.469420e-04 | False |
| 343 | 672264251789176834 | https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg | 1 | Chihuahua | 0.609860 | True | teddy | 6.813370e-02 | False | Norwich_terrier | 5.922730e-02 | True |
| 344 | 672267570918129665 | https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg | 1 | Irish_terrier | 0.716932 | True | miniature_pinscher | 5.123350e-02 | True | Airedale | 4.438090e-02 | True |
| 345 | 672272411274932228 | https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg | 2 | pug | 0.914685 | True | Norwegian_elkhound | 1.498190e-02 | True | Siamese_cat | 9.220550e-03 | False |
| 346 | 672466075045466113 | https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg | 1 | cocker_spaniel | 0.150424 | True | toy_poodle | 8.860530e-02 | True | Welsh_springer_spaniel | 7.201430e-02 | True |
| 347 | 672475084225949696 | https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg | 1 | terrapin | 0.879286 | False | cockroach | 4.525240e-02 | False | box_turtle | 1.640380e-02 | False |
| 348 | 672481316919734272 | https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg | 1 | Border_collie | 0.599454 | True | collie | 1.062270e-01 | True | Shetland_sheepdog | 9.446490e-02 | True |
| 349 | 672482722825261057 | https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg | 1 | West_Highland_white_terrier | 0.586173 | True | borzoi | 2.066200e-01 | True | Great_Pyrenees | 6.065270e-02 | True |
| 350 | 672488522314567680 | https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg | 1 | Doberman | 0.605358 | True | Rottweiler | 1.083820e-01 | True | Appenzeller | 7.779770e-02 | True |
| 351 | 672523490734551040 | https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg | 1 | golden_retriever | 0.565981 | True | chow | 8.121170e-02 | True | Irish_terrier | 6.159600e-02 | True |
| 352 | 672538107540070400 | https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg | 1 | Siamese_cat | 0.383937 | False | Chihuahua | 1.602740e-01 | True | giant_panda | 1.477450e-01 | False |
| 353 | 672591271085670400 | https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg | 1 | gondola | 0.134290 | False | lifeboat | 1.083560e-01 | False | bassinet | 9.367890e-02 | False |
| 354 | 672591762242805761 | https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg | 1 | kuvasz | 0.777659 | True | Great_Pyrenees | 1.125170e-01 | True | golden_retriever | 3.835090e-02 | True |
| 355 | 672594978741354496 | https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg | 1 | Great_Pyrenees | 0.755945 | True | Old_English_sheepdog | 8.233680e-02 | True | Afghan_hound | 2.703660e-02 | True |
| 356 | 672604026190569472 | https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg | 1 | toy_poodle | 0.820158 | True | miniature_poodle | 1.784040e-01 | True | toilet_tissue | 2.911580e-04 | False |
| 357 | 672609152938721280 | https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg | 1 | microwave | 0.981946 | False | rotisserie | 7.472450e-03 | False | television | 5.880620e-03 | False |
| 358 | 672614745925664768 | https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg | 1 | starfish | 0.712717 | False | goldfish | 2.588650e-01 | False | sea_cucumber | 2.015430e-03 | False |
| 359 | 672622327801233409 | https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg | 1 | golden_retriever | 0.952773 | True | Labrador_retriever | 1.083500e-02 | True | clumber | 8.786010e-03 | True |
| 360 | 672640509974827008 | https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg | 1 | Chesapeake_Bay_retriever | 0.420155 | True | Cardigan | 2.660300e-01 | True | Labrador_retriever | 4.251450e-02 | True |
| 361 | 672828477930868736 | https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg | 1 | sandbar | 0.118154 | False | stingray | 7.591500e-02 | False | seashore | 7.512480e-02 | False |
| 362 | 672834301050937345 | https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg | 1 | Pembroke | 0.582560 | True | Cardigan | 2.588690e-01 | True | nipple | 3.383450e-02 | False |
| 363 | 672877615439593473 | https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg | 1 | Chihuahua | 0.412362 | True | beagle | 6.806610e-02 | True | borzoi | 4.507120e-02 | True |
| 364 | 672884426393653248 | https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg | 1 | tusker | 0.122410 | False | warthog | 1.198700e-01 | False | water_buffalo | 1.058560e-01 | False |
| 365 | 672898206762672129 | https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg | 1 | motor_scooter | 0.835819 | False | bobsled | 3.585630e-02 | False | moped | 3.307900e-02 | False |
| 366 | 672902681409806336 | https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg | 1 | ram | 0.374466 | False | bighorn | 1.596210e-01 | False | Arabian_camel | 1.119190e-01 | False |
| 367 | 672964561327235073 | https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg | 1 | Chihuahua | 0.292343 | True | pug | 1.733640e-01 | True | French_bulldog | 4.550710e-02 | True |
| 368 | 672968025906282496 | https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg | 1 | toy_poodle | 0.678046 | True | miniature_poodle | 1.602730e-01 | True | Airedale | 6.564870e-02 | True |
| 369 | 672970152493887488 | https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg | 1 | leaf_beetle | 0.340154 | False | rhinoceros_beetle | 1.396980e-01 | False | crayfish | 5.803360e-02 | False |
| 370 | 672975131468300288 | https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg | 1 | pug | 0.836421 | True | Brabancon_griffon | 4.466780e-02 | True | French_bulldog | 3.657050e-02 | True |
| 371 | 672980819271634944 | https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg | 1 | car_mirror | 0.232754 | False | basset | 2.194610e-01 | True | beagle | 1.123970e-01 | True |
| 372 | 672984142909456390 | https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg | 1 | wombat | 0.738780 | False | beaver | 1.333680e-01 | False | wallaby | 3.237010e-02 | False |
| 373 | 672988786805112832 | https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg | 1 | Lakeland_terrier | 0.836632 | True | West_Highland_white_terrier | 7.389960e-02 | True | wire-haired_fox_terrier | 3.816010e-02 | True |
| 374 | 672995267319328768 | https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg | 1 | French_bulldog | 0.719559 | True | boxer | 1.669270e-01 | True | Boston_bull | 1.013540e-01 | True |
| 375 | 672997845381865473 | https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg | 1 | chow | 0.517255 | True | Pomeranian | 2.060530e-01 | True | koala | 1.270370e-01 | False |
| 376 | 673148804208660480 | https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg | 1 | tub | 0.873010 | False | bathtub | 9.143410e-02 | False | toilet_seat | 2.545630e-02 | False |
| 377 | 673213039743795200 | https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg | 1 | schipperke | 0.888082 | True | groenendael | 4.772740e-02 | True | kelpie | 4.139800e-02 | True |
| 378 | 673240798075449344 | https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg | 1 | Airedale | 0.443004 | True | brown_bear | 1.141620e-01 | False | Chesapeake_Bay_retriever | 9.463860e-02 | True |
| 379 | 673270968295534593 | https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg | 1 | Shih-Tzu | 0.610453 | True | Maltese_dog | 1.668150e-01 | True | Old_English_sheepdog | 1.320150e-01 | True |
| 380 | 673295268553605120 | https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg | 1 | golden_retriever | 0.889241 | True | Labrador_retriever | 6.468330e-02 | True | Great_Pyrenees | 1.261260e-02 | True |
| 381 | 673317986296586240 | https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg | 2 | miniature_pinscher | 0.384099 | True | bloodhound | 7.992320e-02 | True | Rottweiler | 6.859410e-02 | True |
| 382 | 673320132811366400 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 383 | 673342308415348736 | https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg | 1 | ski_mask | 0.981017 | False | Chihuahua | 1.355920e-02 | True | kelpie | 6.521800e-04 | True |
| 384 | 673343217010679808 | https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg | 1 | Chihuahua | 0.541408 | True | Italian_greyhound | 1.568910e-01 | True | miniature_pinscher | 6.955580e-02 | True |
| 385 | 673345638550134785 | https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg | 1 | hamster | 0.761025 | False | weasel | 6.936170e-02 | False | Pomeranian | 6.462700e-02 | True |
| 386 | 673350198937153538 | https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg | 1 | West_Highland_white_terrier | 0.119188 | True | quill | 1.040140e-01 | False | Maltese_dog | 9.394400e-02 | True |
| 387 | 673352124999274496 | https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg | 1 | golden_retriever | 0.672808 | True | Labrador_retriever | 2.758850e-01 | True | kuvasz | 2.225500e-02 | True |
| 388 | 673355879178194945 | https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg | 1 | Rottweiler | 0.529248 | True | miniature_pinscher | 1.682960e-01 | True | Appenzeller | 1.004520e-01 | True |
| 389 | 673359818736984064 | https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg | 1 | English_setter | 0.696568 | True | Brittany_spaniel | 1.040460e-01 | True | Ibizan_hound | 3.483250e-02 | True |
| 390 | 673363615379013632 | https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg | 1 | ox | 0.193431 | False | warthog | 1.238270e-01 | False | bison | 1.111770e-01 | False |
| 391 | 673576835670777856 | https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg | 1 | teddy | 0.255210 | False | Christmas_stocking | 9.828520e-02 | False | pajama | 7.273510e-02 | False |
| 392 | 673580926094458881 | https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg | 1 | beagle | 0.985062 | True | basset | 6.417840e-03 | True | Walker_hound | 3.532590e-03 | True |
| 393 | 673583129559498752 | https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg | 1 | Arctic_fox | 0.153271 | False | golden_retriever | 1.139460e-01 | True | borzoi | 1.107180e-01 | True |
| 394 | 673612854080196609 | https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg | 1 | Newfoundland | 0.223101 | True | Leonberg | 1.111060e-01 | True | shovel | 8.562630e-02 | False |
| 395 | 673636718965334016 | https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg | 1 | wombat | 0.880257 | False | corn | 1.942070e-02 | False | pug | 1.904430e-02 | True |
| 396 | 673656262056419329 | https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg | 1 | bull_mastiff | 0.700625 | True | Rhodesian_ridgeback | 9.469770e-02 | True | Brabancon_griffon | 5.755940e-02 | True |
| 397 | 673662677122719744 | https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg | 1 | Labrador_retriever | 0.957670 | True | beagle | 1.241270e-02 | True | golden_retriever | 5.689130e-03 | True |
| 398 | 673680198160809984 | https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg | 1 | Samoyed | 0.989853 | True | Arctic_fox | 3.343750e-03 | False | chow | 2.801720e-03 | True |
| 399 | 673686845050527744 | https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg | 1 | Pekinese | 0.185903 | True | guinea_pig | 1.729510e-01 | False | pug | 1.661830e-01 | True |
| 400 | 673688752737402881 | https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg | 1 | soft-coated_wheaten_terrier | 0.340806 | True | Sealyham_terrier | 2.348980e-01 | True | kuvasz | 2.034950e-01 | True |
| 401 | 673689733134946305 | https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg | 1 | Chesapeake_Bay_retriever | 0.382220 | True | American_Staffordshire_terrier | 3.501400e-01 | True | seat_belt | 9.887390e-02 | False |
| 402 | 673697980713705472 | https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg | 1 | porcupine | 0.151876 | False | hen | 1.113800e-01 | False | doormat | 5.893370e-02 | False |
| 403 | 673700254269775872 | https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg | 1 | water_bottle | 0.614536 | False | ashcan | 5.091140e-02 | False | bucket | 3.743190e-02 | False |
| 404 | 673705679337693185 | https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg | 1 | Shih-Tzu | 0.165383 | True | Lhasa | 1.169770e-01 | True | Yorkshire_terrier | 6.389890e-02 | True |
| 405 | 673707060090052608 | https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg | 1 | German_short-haired_pointer | 0.935771 | True | kelpie | 2.256100e-02 | True | Labrador_retriever | 8.846650e-03 | True |
| 406 | 673708611235921920 | https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg | 1 | golden_retriever | 0.936333 | True | cocker_spaniel | 2.421090e-02 | True | Labrador_retriever | 9.434850e-03 | True |
| 407 | 673709992831262724 | https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg | 1 | Chihuahua | 0.330171 | True | Siamese_cat | 1.815800e-01 | False | kelpie | 1.782270e-01 | True |
| 408 | 673711475735838725 | https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg | 1 | Maltese_dog | 0.607401 | True | toy_poodle | 1.438360e-01 | True | Sealyham_terrier | 6.390700e-02 | True |
| 409 | 673715861853720576 | https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg | 1 | suit | 0.404115 | False | bow_tie | 2.946830e-01 | False | Windsor_tie | 1.327010e-01 | False |
| 410 | 673887867907739649 | https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg | 2 | Brabancon_griffon | 0.216767 | True | Chihuahua | 1.909580e-01 | True | golden_retriever | 1.632880e-01 | True |
| 411 | 673906403526995968 | https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg | 1 | toilet_seat | 0.683319 | False | soft-coated_wheaten_terrier | 4.892770e-02 | True | Siberian_husky | 3.038600e-02 | True |
| 412 | 673919437611909120 | https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg | 1 | jack-o'-lantern | 0.172079 | False | schipperke | 1.159840e-01 | True | miniature_pinscher | 5.217500e-02 | True |
| 413 | 673956914389192708 | https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg | 1 | pug | 0.586161 | True | Brabancon_griffon | 8.274370e-02 | True | Chihuahua | 4.587770e-02 | True |
| 414 | 674008982932058114 | https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg | 1 | jigsaw_puzzle | 0.970810 | False | prayer_rug | 1.104820e-02 | False | quill | 8.431710e-03 | False |
| 415 | 674014384960745472 | https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg | 1 | Pembroke | 0.742320 | True | Cardigan | 8.493710e-02 | True | Eskimo_dog | 6.832090e-02 | True |
| 416 | 674019345211760640 | https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg | 1 | collie | 0.992732 | True | borzoi | 5.042900e-03 | True | Shetland_sheepdog | 1.724780e-03 | True |
| 417 | 674024893172875264 | https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg | 1 | Pomeranian | 0.648500 | True | Pekinese | 3.398350e-01 | True | Persian_cat | 6.448460e-03 | False |
| 418 | 674036086168010753 | https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg | 1 | toy_poodle | 0.685617 | True | miniature_poodle | 1.519360e-01 | True | Maltese_dog | 4.553110e-02 | True |
| 419 | 674038233588723717 | https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg | 1 | Eskimo_dog | 0.358459 | True | Norwegian_elkhound | 2.069630e-01 | True | malamute | 1.482360e-01 | True |
| 420 | 674042553264685056 | https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg | 1 | toy_poodle | 0.927975 | True | miniature_poodle | 6.894640e-02 | True | standard_poodle | 1.315750e-03 | True |
| 421 | 674045139690631169 | https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg | 1 | robin | 0.369661 | False | rhinoceros_beetle | 1.106070e-01 | False | European_fire_salamander | 4.317820e-02 | False |
| 422 | 674051556661161984 | https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg | 1 | Shih-Tzu | 0.179777 | True | badger | 1.605800e-01 | False | three-toed_sloth | 1.321540e-01 | False |
| 423 | 674053186244734976 | https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg | 1 | Cardigan | 0.984725 | True | Pembroke | 8.730390e-03 | True | kelpie | 2.194770e-03 | True |
| 424 | 674063288070742018 | https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg | 1 | ostrich | 0.661176 | False | bearskin | 2.148790e-01 | False | swab | 6.445570e-02 | False |
| 425 | 674075285688614912 | https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg | 1 | Airedale | 0.305392 | True | Kerry_blue_terrier | 2.500140e-01 | True | Lakeland_terrier | 1.886680e-01 | True |
| 426 | 674082852460433408 | https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg | 1 | Pomeranian | 0.666957 | True | Shetland_sheepdog | 2.801940e-02 | True | ski_mask | 2.068270e-02 | False |
| 427 | 674255168825880576 | https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg | 1 | Eskimo_dog | 0.615741 | True | Siberian_husky | 1.995440e-01 | True | malamute | 1.791070e-01 | True |
| 428 | 674262580978937856 | https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg | 1 | Greater_Swiss_Mountain_dog | 0.519428 | True | boxer | 1.215000e-01 | True | Staffordshire_bullterrier | 1.144980e-01 | True |
| 429 | 674265582246694913 | https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg | 1 | slug | 0.998075 | False | ice_lolly | 9.840100e-04 | False | leafhopper | 9.720380e-05 | False |
| 430 | 674269164442398721 | https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg | 1 | pug | 0.622921 | True | Norwegian_elkhound | 4.865850e-02 | True | Cardigan | 1.696550e-02 | True |
| 431 | 674271431610523648 | https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg | 1 | German_shepherd | 0.991454 | True | malinois | 4.150230e-03 | True | bloodhound | 3.019130e-03 | True |
| 432 | 674291837063053312 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 433 | 674318007229923329 | https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg | 1 | porcupine | 0.846628 | False | hamster | 3.813610e-02 | False | echidna | 1.468040e-02 | False |
| 434 | 674372068062928900 | https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg | 1 | seashore | 0.346126 | False | American_alligator | 1.064040e-01 | False | sandbar | 4.934910e-02 | False |
| 435 | 674394782723014656 | https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg | 1 | toilet_tissue | 0.134983 | False | mosquito_net | 1.332470e-01 | False | Lakeland_terrier | 1.090990e-01 | True |
| 436 | 674410619106390016 | https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg | 1 | brown_bear | 0.698207 | False | sea_lion | 4.647450e-02 | False | beagle | 1.942680e-02 | True |
| 437 | 674416750885273600 | https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg | 1 | Chihuahua | 0.287201 | True | Boston_bull | 2.509200e-01 | True | whippet | 1.410120e-01 | True |
| 438 | 674422304705744896 | https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg | 1 | golden_retriever | 0.964497 | True | Labrador_retriever | 9.006180e-03 | True | tennis_ball | 7.138830e-03 | False |
| 439 | 674436901579923456 | https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg | 1 | acorn_squash | 0.375392 | False | Shih-Tzu | 1.054160e-01 | True | Lhasa | 7.283230e-02 | True |
| 440 | 674447403907457024 | https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg | 1 | Brabancon_griffon | 0.409909 | True | malinois | 2.446490e-01 | True | bull_mastiff | 7.481950e-02 | True |
| 441 | 674468880899788800 | https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg | 2 | chow | 0.526230 | True | Pomeranian | 2.836470e-01 | True | toy_poodle | 6.766540e-02 | True |
| 442 | 674632714662858753 | https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg | 1 | jellyfish | 0.432748 | False | goldfish | 1.131110e-01 | False | coral_reef | 8.704720e-02 | False |
| 443 | 674638615994089473 | https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg | 1 | Pomeranian | 0.846986 | True | chow | 1.420140e-01 | True | keeshond | 2.605040e-03 | True |
| 444 | 674644256330530816 | https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg | 1 | soccer_ball | 0.398102 | False | basset | 3.356920e-01 | True | cocker_spaniel | 7.294080e-02 | True |
| 445 | 674646392044941312 | https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg | 1 | flat-coated_retriever | 0.837448 | True | groenendael | 8.616650e-02 | True | Labrador_retriever | 1.605220e-02 | True |
| 446 | 674664755118911488 | https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg | 1 | African_crocodile | 0.330625 | False | American_alligator | 7.535570e-02 | False | mink | 5.748070e-02 | False |
| 447 | 674670581682434048 | https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg | 1 | malamute | 0.180079 | True | Eskimo_dog | 1.780330e-01 | True | Siberian_husky | 7.796610e-02 | True |
| 448 | 674690135443775488 | https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg | 1 | tick | 0.242538 | False | nail | 2.125890e-01 | False | screw | 1.728380e-01 | False |
| 449 | 674737130913071104 | https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg | 1 | Pomeranian | 0.948537 | True | schipperke | 1.430990e-02 | True | Chihuahua | 8.120240e-03 | True |
| 450 | 674739953134403584 | https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg | 1 | Dandie_Dinmont | 0.175915 | True | black-footed_ferret | 9.653430e-02 | False | toy_poodle | 6.414470e-02 | True |
| 451 | 674743008475090944 | https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg | 1 | Bernese_mountain_dog | 0.583054 | True | Shetland_sheepdog | 6.599040e-02 | True | Greater_Swiss_Mountain_dog | 6.523620e-02 | True |
| 452 | 674752233200820224 | https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg | 2 | vizsla | 0.665516 | True | redbone | 1.733660e-01 | True | basset | 1.347830e-01 | True |
| 453 | 674754018082705410 | https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg | 1 | seashore | 0.352321 | False | promontory | 1.317530e-01 | False | wreck | 9.559670e-02 | False |
| 454 | 674764817387900928 | https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg | 2 | Samoyed | 0.634695 | True | Arctic_fox | 3.098530e-01 | False | kuvasz | 1.964100e-02 | True |
| 455 | 674767892831932416 | https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg | 1 | shower_curtain | 0.238855 | False | sarong | 9.241410e-02 | False | kimono | 5.641250e-02 | False |
| 456 | 674774481756377088 | https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg | 1 | Chihuahua | 0.407016 | True | French_bulldog | 3.099780e-01 | True | Siamese_cat | 2.276770e-01 | False |
| 457 | 674781762103414784 | https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg | 1 | ocarina | 0.148975 | False | hamster | 6.898490e-02 | False | wool | 3.172850e-02 | False |
| 458 | 674788554665512960 | https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg | 1 | miniature_poodle | 0.349561 | True | toy_poodle | 1.547110e-01 | True | Maltese_dog | 1.342290e-01 | True |
| 459 | 674790488185167872 | https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg | 1 | Labrador_retriever | 0.801903 | True | Chesapeake_Bay_retriever | 1.935750e-01 | True | Rottweiler | 1.193050e-03 | True |
| 460 | 674793399141146624 | https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg | 1 | giant_schnauzer | 0.119693 | True | Afghan_hound | 7.276270e-02 | True | miniature_schnauzer | 6.378590e-02 | True |
| 461 | 674800520222154752 | https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg | 1 | Pembroke | 0.876479 | True | Cardigan | 9.691140e-02 | True | dingo | 9.195670e-03 | False |
| 462 | 674805413498527744 | https://pbs.twimg.com/ext_tw_video_thumb/67480... | 1 | English_springer | 0.594467 | True | cocker_spaniel | 3.899940e-01 | True | Welsh_springer_spaniel | 7.096110e-03 | True |
| 463 | 674999807681908736 | https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg | 1 | Rottweiler | 0.591829 | True | Doberman | 2.045440e-01 | True | black-and-tan_coonhound | 7.860190e-02 | True |
| 464 | 675003128568291329 | https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg | 1 | Pembroke | 0.655279 | True | Pomeranian | 1.041640e-01 | True | Cardigan | 5.281770e-02 | True |
| 465 | 675006312288268288 | https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg | 1 | boxer | 0.654697 | True | space_heater | 4.338880e-02 | False | beagle | 4.284760e-02 | True |
| 466 | 675015141583413248 | https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg | 1 | street_sign | 0.290091 | False | golden_retriever | 2.583720e-01 | True | sandbar | 1.321730e-01 | False |
| 467 | 675047298674663426 | https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg | 1 | Samoyed | 0.978007 | True | chow | 7.121240e-03 | True | Pomeranian | 6.397830e-03 | True |
| 468 | 675109292475830276 | https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg | 1 | dalmatian | 0.989519 | True | English_setter | 5.257670e-03 | True | German_short-haired_pointer | 1.442830e-03 | True |
| 469 | 675111688094527488 | https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg | 1 | Labrador_retriever | 0.631501 | True | Brittany_spaniel | 1.019270e-01 | True | Chesapeake_Bay_retriever | 6.264980e-02 | True |
| 470 | 675113801096802304 | https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg | 1 | bow | 0.168020 | False | quill | 1.088070e-01 | False | joystick | 4.331180e-02 | False |
| 471 | 675135153782571009 | https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg | 1 | stove | 0.587507 | False | rotisserie | 5.171310e-02 | False | microwave | 2.072530e-02 | False |
| 472 | 675145476954566656 | https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg | 1 | Labrador_retriever | 0.458746 | True | Great_Dane | 2.355040e-01 | True | Staffordshire_bullterrier | 1.168640e-01 | True |
| 473 | 675146535592706048 | https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg | 1 | dingo | 0.288447 | False | Cardigan | 2.299440e-01 | True | Pembroke | 1.904070e-01 | True |
| 474 | 675147105808306176 | https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg | 1 | golden_retriever | 0.949215 | True | Labrador_retriever | 1.676540e-02 | True | flat-coated_retriever | 1.063730e-02 | True |
| 475 | 675149409102012420 | https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg | 1 | chow | 0.999876 | True | Tibetan_mastiff | 5.867490e-05 | True | Tibetan_terrier | 2.877850e-05 | True |
| 476 | 675153376133427200 | https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg | 1 | paper_towel | 0.327957 | False | mailbox | 9.602690e-02 | False | seat_belt | 3.499510e-02 | False |
| 477 | 675166823650848770 | https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg | 1 | llama | 0.284394 | False | standard_poodle | 1.325690e-01 | True | teddy | 1.279750e-01 | False |
| 478 | 675334060156301312 | https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg | 2 | Pembroke | 0.773135 | True | Cardigan | 1.168100e-01 | True | chow | 3.903620e-02 | True |
| 479 | 675349384339542016 | https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg | 3 | borzoi | 0.866367 | True | Saluki | 1.220790e-01 | True | Irish_wolfhound | 4.019720e-03 | True |
| 480 | 675354435921575936 | https://pbs.twimg.com/ext_tw_video_thumb/67535... | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 481 | 675362609739206656 | https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg | 1 | Labrador_retriever | 0.479008 | True | ice_bear | 2.182890e-01 | False | kuvasz | 1.399110e-01 | True |
| 482 | 675372240448454658 | https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg | 1 | Chihuahua | 0.416385 | True | West_Highland_white_terrier | 1.029330e-01 | True | Samoyed | 8.729950e-02 | True |
| 483 | 675432746517426176 | https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg | 1 | Labrador_retriever | 0.986548 | True | golden_retriever | 8.861850e-03 | True | Chihuahua | 6.935280e-04 | True |
| 484 | 675483430902214656 | https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg | 1 | box_turtle | 0.543706 | False | terrapin | 2.026000e-01 | False | loggerhead | 7.112150e-02 | False |
| 485 | 675489971617296384 | https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg | 1 | West_Highland_white_terrier | 0.139613 | True | seat_belt | 1.186470e-01 | False | Old_English_sheepdog | 9.395220e-02 | True |
| 486 | 675497103322386432 | https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg | 1 | vizsla | 0.519589 | True | miniature_pinscher | 6.477120e-02 | True | Rhodesian_ridgeback | 6.149130e-02 | True |
| 487 | 675501075957489664 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 488 | 675517828909424640 | https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg | 1 | Scottish_deerhound | 0.240591 | True | groenendael | 1.569160e-01 | True | flat-coated_retriever | 9.089940e-02 | True |
| 489 | 675522403582218240 | https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg | 1 | cocker_spaniel | 0.299708 | True | golden_retriever | 2.636650e-01 | True | Irish_setter | 8.032330e-02 | True |
| 490 | 675531475945709568 | https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg | 1 | Pembroke | 0.918441 | True | Cardigan | 2.733950e-02 | True | Siberian_husky | 2.022100e-02 | True |
| 491 | 675534494439489536 | https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg | 1 | chow | 0.749368 | True | schipperke | 1.337380e-01 | True | Newfoundland | 4.991380e-02 | True |
| 492 | 675706639471788032 | https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg | 1 | English_springer | 0.990300 | True | Welsh_springer_spaniel | 2.079910e-03 | True | cocker_spaniel | 2.013780e-03 | True |
| 493 | 675707330206547968 | https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg | 1 | bath_towel | 0.721933 | False | Staffordshire_bullterrier | 5.934420e-02 | True | bagel | 3.570160e-02 | False |
| 494 | 675710890956750848 | https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg | 2 | standard_schnauzer | 0.441427 | True | miniature_schnauzer | 2.488850e-01 | True | Sealyham_terrier | 1.649670e-01 | True |
| 495 | 675740360753160193 | https://pbs.twimg.com/ext_tw_video_thumb/67574... | 1 | golden_retriever | 0.800495 | True | kuvasz | 9.775640e-02 | True | Saluki | 6.841460e-02 | True |
| 496 | 675781562965868544 | https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg | 1 | Maltese_dog | 0.921968 | True | West_Highland_white_terrier | 1.781070e-02 | True | toy_poodle | 1.355540e-02 | True |
| 497 | 675798442703122432 | https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg | 1 | beagle | 0.681218 | True | basset | 1.251210e-01 | True | boxer | 8.039820e-02 | True |
| 498 | 675820929667219457 | https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg | 1 | basset | 0.556373 | True | beagle | 2.016750e-01 | True | bloodhound | 1.108480e-01 | True |
| 499 | 675822767435051008 | https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg | 1 | Pomeranian | 0.460710 | True | chow | 2.027650e-01 | True | Pekinese | 1.332660e-01 | True |
| 500 | 675845657354215424 | https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg | 1 | pug | 0.883952 | True | Boston_bull | 1.105680e-02 | True | French_bulldog | 9.839810e-03 | True |
| 501 | 675853064436391936 | https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg | 1 | Labrador_retriever | 0.868367 | True | golden_retriever | 4.330460e-02 | True | vizsla | 2.820720e-02 | True |
| 502 | 675870721063669760 | https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg | 1 | golden_retriever | 0.263892 | True | Welsh_springer_spaniel | 1.841930e-01 | True | beagle | 1.822410e-01 | True |
| 503 | 675878199931371520 | https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg | 1 | wood_rabbit | 0.785756 | False | hare | 1.181810e-01 | False | Cardigan | 4.362710e-02 | True |
| 504 | 675888385639251968 | https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg | 1 | West_Highland_white_terrier | 0.672117 | True | Old_English_sheepdog | 1.461470e-01 | True | komondor | 2.314140e-02 | True |
| 505 | 675891555769696257 | https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg | 1 | Italian_greyhound | 0.305637 | True | whippet | 2.320570e-01 | True | Great_Dane | 1.178060e-01 | True |
| 506 | 675898130735476737 | https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg | 1 | Labrador_retriever | 0.407430 | True | malinois | 7.703670e-02 | True | pug | 7.459730e-02 | True |
| 507 | 676089483918516224 | https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg | 1 | bull_mastiff | 0.743808 | True | boxer | 1.066970e-01 | True | American_Staffordshire_terrier | 4.233530e-02 | True |
| 508 | 676098748976615425 | https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg | 1 | walking_stick | 0.162179 | False | sandal | 1.290860e-01 | False | purse | 8.141190e-02 | False |
| 509 | 676101918813499392 | https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg | 1 | Shih-Tzu | 0.225848 | True | Norfolk_terrier | 1.868730e-01 | True | Irish_terrier | 1.069870e-01 | True |
| 510 | 676146341966438401 | https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg | 1 | Irish_water_spaniel | 0.388332 | True | standard_poodle | 2.841210e-01 | True | greenhouse | 3.486810e-02 | False |
| 511 | 676191832485810177 | https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg | 2 | Chihuahua | 0.376741 | True | Italian_greyhound | 1.731140e-01 | True | muzzle | 7.148510e-02 | False |
| 512 | 676215927814406144 | https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg | 1 | hamster | 0.999484 | False | guinea_pig | 1.582170e-04 | False | broccoli | 6.091100e-05 | False |
| 513 | 676219687039057920 | https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg | 1 | bubble | 0.997556 | False | leafhopper | 1.589610e-04 | False | whippet | 1.324640e-04 | True |
| 514 | 676237365392908289 | https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg | 1 | French_bulldog | 0.961996 | True | Chihuahua | 2.179300e-02 | True | Boston_bull | 6.916290e-03 | True |
| 515 | 676263575653122048 | https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg | 1 | teddy | 0.098283 | False | toy_poodle | 9.802930e-02 | True | shopping_basket | 7.785210e-02 | False |
| 516 | 676430933382295552 | https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg | 1 | golden_retriever | 0.583875 | True | cocker_spaniel | 2.036710e-01 | True | Labrador_retriever | 3.612170e-02 | True |
| 517 | 676440007570247681 | https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg | 2 | Maltese_dog | 0.579472 | True | toy_poodle | 1.334460e-01 | True | Shih-Tzu | 9.439660e-02 | True |
| 518 | 676470639084101634 | https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg | 1 | golden_retriever | 0.790386 | True | borzoi | 2.288510e-02 | True | dingo | 1.534340e-02 | False |
| 519 | 676496375194980353 | https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg | 1 | pug | 0.985387 | True | Norwegian_elkhound | 4.416900e-03 | True | French_bulldog | 3.892870e-03 | True |
| 520 | 676533798876651520 | https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg | 1 | chow | 0.265274 | True | ice_bear | 1.676140e-01 | False | fur_coat | 1.175060e-01 | False |
| 521 | 676575501977128964 | https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg | 1 | feather_boa | 0.424106 | False | Yorkshire_terrier | 7.314430e-02 | True | Shetland_sheepdog | 5.759760e-02 | True |
| 522 | 676582956622721024 | https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg | 1 | seat_belt | 0.790028 | False | Boston_bull | 1.963070e-01 | True | French_bulldog | 1.242890e-02 | True |
| 523 | 676588346097852417 | https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg | 1 | Boston_bull | 0.976577 | True | French_bulldog | 1.432370e-02 | True | Chihuahua | 2.301920e-03 | True |
| 524 | 676603393314578432 | https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg | 1 | whippet | 0.877021 | True | Great_Dane | 3.418190e-02 | True | boxer | 2.840400e-02 | True |
| 525 | 676606785097199616 | https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg | 1 | Loafer | 0.202999 | False | doormat | 2.004110e-01 | False | malinois | 1.423000e-01 | True |
| 526 | 676613908052996102 | https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg | 1 | book_jacket | 0.493790 | False | Doberman | 9.642280e-02 | True | miniature_pinscher | 7.064670e-02 | True |
| 527 | 676617503762681856 | https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg | 1 | Chihuahua | 0.841084 | True | Pomeranian | 1.205300e-01 | True | Pekinese | 6.600340e-03 | True |
| 528 | 676776431406465024 | https://pbs.twimg.com/ext_tw_video_thumb/67677... | 1 | doormat | 0.201346 | False | dishwasher | 1.917490e-01 | False | microwave | 3.811000e-02 | False |
| 529 | 676811746707918848 | https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg | 1 | Chihuahua | 0.440916 | True | Pomeranian | 3.458060e-01 | True | cocker_spaniel | 6.033120e-02 | True |
| 530 | 676819651066732545 | https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg | 2 | rain_barrel | 0.625555 | False | barrel | 1.383830e-01 | False | Labrador_retriever | 3.946460e-02 | True |
| 531 | 676821958043033607 | https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg | 2 | Great_Pyrenees | 0.869804 | True | kuvasz | 7.981430e-02 | True | standard_poodle | 1.326300e-02 | True |
| 532 | 676864501615042560 | https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg | 1 | Chesapeake_Bay_retriever | 0.371146 | True | water_buffalo | 9.959630e-02 | False | Weimaraner | 4.896790e-02 | True |
| 533 | 676897532954456065 | https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg | 1 | hamster | 0.628255 | False | guinea_pig | 3.186460e-01 | False | macaque | 1.305820e-02 | False |
| 534 | 676936541936185344 | https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg | 1 | Chesapeake_Bay_retriever | 0.545286 | True | Norwegian_elkhound | 8.148200e-02 | True | space_heater | 4.739110e-02 | False |
| 535 | 676942428000112642 | https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg | 1 | black-footed_ferret | 0.707199 | False | polecat | 1.546300e-01 | False | weasel | 9.762550e-02 | False |
| 536 | 676946864479084545 | https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg | 1 | Pekinese | 0.752707 | True | golden_retriever | 5.565460e-02 | True | Great_Pyrenees | 4.101780e-02 | True |
| 537 | 676948236477857792 | https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg | 1 | guenon | 0.611603 | False | macaque | 1.351760e-01 | False | squirrel_monkey | 8.324730e-02 | False |
| 538 | 676949632774234114 | https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg | 1 | Welsh_springer_spaniel | 0.206479 | True | Saint_Bernard | 1.393390e-01 | True | boxer | 1.146060e-01 | True |
| 539 | 676957860086095872 | https://pbs.twimg.com/ext_tw_video_thumb/67695... | 1 | Labrador_retriever | 0.772423 | True | beagle | 5.590170e-02 | True | golden_retriever | 3.115190e-02 | True |
| 540 | 676975532580409345 | https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg | 1 | malamute | 0.363257 | True | Siberian_husky | 2.458620e-01 | True | Eskimo_dog | 1.255470e-01 | True |
| 541 | 677187300187611136 | https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg | 1 | English_setter | 0.282396 | True | Shih-Tzu | 8.411190e-02 | True | Old_English_sheepdog | 5.953800e-02 | True |
| 542 | 677228873407442944 | https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg | 1 | common_iguana | 0.566338 | False | tennis_ball | 1.546460e-01 | False | green_lizard | 4.497580e-02 | False |
| 543 | 677269281705472000 | https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg | 1 | Shetland_sheepdog | 0.656616 | True | collie | 1.954050e-01 | True | German_shepherd | 1.310320e-02 | True |
| 544 | 677301033169788928 | https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg | 1 | Japanese_spaniel | 0.661178 | True | Pekinese | 1.501190e-01 | True | Chihuahua | 1.197200e-01 | True |
| 545 | 677314812125323265 | https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg | 2 | Blenheim_spaniel | 0.924127 | True | Japanese_spaniel | 5.479010e-02 | True | Chihuahua | 8.204040e-03 | True |
| 546 | 677328882937298944 | https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg | 1 | water_buffalo | 0.424250 | False | kelpie | 2.905410e-02 | True | Staffordshire_bullterrier | 2.846970e-02 | True |
| 547 | 677331501395156992 | https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg | 1 | beagle | 0.313464 | True | boxer | 2.185030e-01 | True | French_bulldog | 1.064620e-01 | True |
| 548 | 677334615166730240 | https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg | 2 | Lakeland_terrier | 0.859392 | True | Airedale | 6.729170e-02 | True | Irish_water_spaniel | 4.953060e-02 | True |
| 549 | 677530072887205888 | https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg | 1 | Staffordshire_bullterrier | 0.689259 | True | Norwegian_elkhound | 2.612100e-02 | True | American_Staffordshire_terrier | 2.307470e-02 | True |
| 550 | 677547928504967168 | https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg | 1 | American_Staffordshire_terrier | 0.914978 | True | Staffordshire_bullterrier | 8.439530e-02 | True | boxer | 4.616630e-04 | True |
| 551 | 677557565589463040 | https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg | 1 | seat_belt | 0.277257 | False | Shih-Tzu | 2.490170e-01 | True | Pekinese | 2.092130e-01 | True |
| 552 | 677565715327688705 | https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg | 1 | basset | 0.397295 | True | Welsh_springer_spaniel | 1.995540e-01 | True | purse | 1.056410e-01 | False |
| 553 | 677573743309385728 | https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg | 2 | patio | 0.535070 | False | folding_chair | 8.041920e-02 | False | parallel_bars | 3.479650e-02 | False |
| 554 | 677644091929329666 | https://pbs.twimg.com/ext_tw_video_thumb/67764... | 1 | Chihuahua | 0.626236 | True | Italian_greyhound | 1.284830e-01 | True | swing | 5.984040e-02 | False |
| 555 | 677662372920729601 | https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg | 1 | cowboy_hat | 0.256110 | False | trench_coat | 1.270860e-01 | False | cloak | 7.143890e-02 | False |
| 556 | 677673981332312066 | https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg | 1 | Maltese_dog | 0.817908 | True | Angora | 7.780510e-02 | False | Pomeranian | 2.218420e-02 | True |
| 557 | 677687604918272002 | https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg | 1 | Pembroke | 0.573047 | True | sunglasses | 1.267580e-01 | False | golden_retriever | 1.080470e-01 | True |
| 558 | 677698403548192770 | https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg | 1 | Shih-Tzu | 0.916645 | True | Lhasa | 5.788340e-02 | True | Pekinese | 2.012580e-02 | True |
| 559 | 677700003327029250 | https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg | 1 | Siberian_husky | 0.120849 | True | junco | 7.920560e-02 | False | malamute | 6.308750e-02 | True |
| 560 | 677716515794329600 | https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg | 1 | teddy | 0.662908 | False | crib | 3.189120e-02 | False | chow | 2.543780e-02 | True |
| 561 | 677895101218201600 | https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg | 1 | dalmatian | 0.550702 | True | kuvasz | 6.022640e-02 | True | Great_Pyrenees | 5.863100e-02 | True |
| 562 | 677918531514703872 | https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg | 1 | Eskimo_dog | 0.199347 | True | dalmatian | 1.532250e-01 | True | American_Staffordshire_terrier | 1.077980e-01 | True |
| 563 | 678021115718029313 | https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg | 1 | miniature_pinscher | 0.822048 | True | Doberman | 9.608450e-02 | True | Rottweiler | 3.270930e-02 | True |
| 564 | 678255464182861824 | https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg | 1 | Chihuahua | 0.613819 | True | Yorkshire_terrier | 1.279310e-01 | True | Pomeranian | 6.212430e-02 | True |
| 565 | 678278586130948096 | https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg | 1 | Maltese_dog | 0.897841 | True | Lhasa | 3.571750e-02 | True | Tibetan_terrier | 1.710750e-02 | True |
| 566 | 678334497360859136 | https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg | 1 | Norfolk_terrier | 0.378643 | True | golden_retriever | 9.559390e-02 | True | kelpie | 8.530920e-02 | True |
| 567 | 678341075375947776 | https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg | 1 | golden_retriever | 0.853284 | True | cocker_spaniel | 2.622980e-02 | True | Labrador_retriever | 2.412280e-02 | True |
| 568 | 678380236862578688 | https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg | 1 | dogsled | 0.088540 | False | snowmobile | 5.729100e-02 | False | Samoyed | 4.760140e-02 | True |
| 569 | 678389028614488064 | https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg | 1 | miniature_pinscher | 0.516284 | True | kelpie | 2.274020e-01 | True | vizsla | 1.032460e-01 | True |
| 570 | 678396796259975168 | https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg | 2 | Pembroke | 0.956180 | True | Cardigan | 3.180310e-02 | True | Chihuahua | 6.276500e-03 | True |
| 571 | 678399652199309312 | https://pbs.twimg.com/ext_tw_video_thumb/67839... | 1 | swing | 0.929196 | False | Bedlington_terrier | 1.504720e-02 | True | Great_Pyrenees | 1.403890e-02 | True |
| 572 | 678410210315247616 | https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg | 1 | schipperke | 0.145877 | True | Labrador_retriever | 9.835380e-02 | True | kelpie | 9.739340e-02 | True |
| 573 | 678424312106393600 | https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg | 1 | Maltese_dog | 0.759945 | True | toy_poodle | 1.011940e-01 | True | Shih-Tzu | 5.603740e-02 | True |
| 574 | 678446151570427904 | https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg | 1 | Staffordshire_bullterrier | 0.284492 | True | Rottweiler | 1.894340e-01 | True | American_Staffordshire_terrier | 1.894300e-01 | True |
| 575 | 678643457146150913 | https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg | 1 | Labrador_retriever | 0.338757 | True | flat-coated_retriever | 3.044700e-01 | True | chest | 9.339230e-02 | False |
| 576 | 678675843183484930 | https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg | 1 | maze | 0.339850 | False | streetcar | 9.968780e-02 | False | sundial | 8.480770e-02 | False |
| 577 | 678740035362037760 | https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg | 1 | seat_belt | 0.787164 | False | sunglasses | 4.573870e-02 | False | beagle | 2.252510e-02 | True |
| 578 | 678755239630127104 | https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg | 1 | malamute | 0.606654 | True | Border_collie | 1.938310e-01 | True | collie | 4.837810e-02 | True |
| 579 | 678764513869611008 | https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg | 1 | Irish_terrier | 0.696646 | True | Australian_terrier | 7.496160e-02 | True | Irish_setter | 6.390120e-02 | True |
| 580 | 678767140346941444 | https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg | 1 | harp | 0.821120 | False | window_screen | 2.512080e-02 | False | mosquito_net | 1.671560e-02 | False |
| 581 | 678774928607469569 | https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg | 1 | Pembroke | 0.194681 | True | toy_poodle | 1.218210e-01 | True | Pomeranian | 9.684300e-02 | True |
| 582 | 678798276842360832 | https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg | 1 | Airedale | 0.583122 | True | silky_terrier | 1.295670e-01 | True | Lakeland_terrier | 9.472660e-02 | True |
| 583 | 678800283649069056 | https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg | 1 | Labrador_retriever | 0.213673 | True | beagle | 1.462350e-01 | True | Airedale | 1.227010e-01 | True |
| 584 | 678969228704284672 | https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg | 1 | Labrador_retriever | 0.680251 | True | Chesapeake_Bay_retriever | 2.016970e-01 | True | golden_retriever | 1.967590e-02 | True |
| 585 | 678991772295516161 | https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg | 1 | Eskimo_dog | 0.330216 | True | Siberian_husky | 1.870030e-01 | True | Chihuahua | 1.014200e-01 | True |
| 586 | 679047485189439488 | https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg | 1 | panpipe | 0.962572 | False | bannister | 2.524820e-02 | False | golden_retriever | 2.930350e-03 | True |
| 587 | 679062614270468097 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 588 | 679111216690831360 | https://pbs.twimg.com/ext_tw_video_thumb/67911... | 1 | kelpie | 0.189423 | True | beagle | 1.219880e-01 | True | basset | 1.211710e-01 | True |
| 589 | 679132435750195208 | https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg | 1 | Scottish_deerhound | 0.194610 | True | Irish_wolfhound | 1.628550e-01 | True | giant_schnauzer | 1.598370e-01 | True |
| 590 | 679148763231985668 | https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg | 1 | Italian_greyhound | 0.302685 | True | hair_slide | 1.242810e-01 | False | Afghan_hound | 5.984600e-02 | True |
| 591 | 679158373988876288 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 592 | 679462823135686656 | https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg | 1 | toy_poodle | 0.621780 | True | miniature_poodle | 1.978190e-01 | True | soft-coated_wheaten_terrier | 4.674500e-02 | True |
| 593 | 679475951516934144 | https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg | 1 | Maltese_dog | 0.145742 | True | toy_poodle | 1.394070e-01 | True | West_Highland_white_terrier | 1.088210e-01 | True |
| 594 | 679503373272485890 | https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg | 1 | porcupine | 0.999846 | False | meerkat | 7.191480e-05 | False | echidna | 4.447290e-05 | False |
| 595 | 679511351870550016 | https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg | 1 | Chihuahua | 0.761972 | True | black-footed_ferret | 1.506050e-01 | False | squirrel_monkey | 2.814790e-02 | False |
| 596 | 679527802031484928 | https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg | 1 | mailbox | 0.336393 | False | cannon | 1.589360e-01 | False | cuirass | 5.264710e-02 | False |
| 597 | 679530280114372609 | https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg | 1 | dalmatian | 0.750256 | True | jaguar | 1.690070e-01 | False | zebra | 6.481490e-03 | False |
| 598 | 679722016581222400 | https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg | 1 | boxer | 0.459604 | True | Boston_bull | 1.979130e-01 | True | French_bulldog | 8.702250e-02 | True |
| 599 | 679729593985699840 | https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg | 1 | wallaby | 0.164215 | False | West_Highland_white_terrier | 9.351480e-02 | True | ashcan | 6.727830e-02 | False |
| 600 | 679736210798047232 | https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg | 1 | French_bulldog | 0.319139 | True | Chihuahua | 1.540880e-01 | True | Cardigan | 1.176880e-01 | True |
| 601 | 679777920601223168 | https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg | 1 | bloodhound | 0.528819 | True | bull_mastiff | 4.201190e-01 | True | French_bulldog | 9.480590e-03 | True |
| 602 | 679828447187857408 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 603 | 679844490799091713 | https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg | 1 | Airedale | 0.903832 | True | Border_terrier | 3.471260e-02 | True | toy_poodle | 2.137800e-02 | True |
| 604 | 679854723806179328 | https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg | 1 | llama | 0.887963 | False | ram | 9.502070e-02 | False | chow | 2.307390e-03 | True |
| 605 | 679862121895714818 | https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg | 1 | EntleBucher | 0.523206 | True | Greater_Swiss_Mountain_dog | 4.316570e-01 | True | Appenzeller | 4.420790e-02 | True |
| 606 | 679877062409191424 | https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg | 1 | hog | 0.809466 | False | hay | 6.017780e-02 | False | lumbermill | 1.648340e-02 | False |
| 607 | 680055455951884288 | https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg | 1 | Samoyed | 0.995466 | True | Great_Pyrenees | 1.833950e-03 | True | Pomeranian | 6.669490e-04 | True |
| 608 | 680070545539371008 | https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg | 1 | earthstar | 0.127701 | False | Shih-Tzu | 1.218110e-01 | True | bubble | 1.178200e-01 | False |
| 609 | 680085611152338944 | https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg | 3 | pillow | 0.778113 | False | apron | 9.502280e-02 | False | wallet | 4.932580e-02 | False |
| 610 | 680100725817409536 | https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg | 1 | golden_retriever | 0.698961 | True | chow | 1.459710e-01 | True | Pomeranian | 3.488800e-02 | True |
| 611 | 680115823365742593 | https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg | 1 | pug | 0.999365 | True | French_bulldog | 5.436150e-04 | True | Boston_bull | 2.815280e-05 | True |
| 612 | 680130881361686529 | https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg | 1 | Maltese_dog | 0.199121 | True | West_Highland_white_terrier | 1.978970e-01 | True | Shih-Tzu | 1.571300e-01 | True |
| 613 | 680145970311643136 | https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg | 1 | miniature_poodle | 0.457117 | True | toy_poodle | 2.264810e-01 | True | Maltese_dog | 6.768150e-02 | True |
| 614 | 680161097740095489 | https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg | 1 | bluetick | 0.268681 | True | miniature_pinscher | 1.256520e-01 | True | English_setter | 8.937270e-02 | True |
| 615 | 680176173301628928 | https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg | 1 | Christmas_stocking | 0.207547 | False | mask | 1.938800e-01 | False | feather_boa | 1.527380e-01 | False |
| 616 | 680191257256136705 | https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg | 1 | Brittany_spaniel | 0.733253 | True | Welsh_springer_spaniel | 2.516340e-01 | True | English_springer | 9.243210e-03 | True |
| 617 | 680206703334408192 | https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg | 1 | Christmas_stocking | 0.149758 | False | cloak | 1.288300e-01 | False | teddy | 1.091290e-01 | False |
| 618 | 680221482581123072 | https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg | 1 | bubble | 0.240173 | False | hen | 1.462220e-01 | False | abaya | 1.393420e-01 | False |
| 619 | 680440374763077632 | https://pbs.twimg.com/ext_tw_video_thumb/68044... | 1 | space_heater | 0.920367 | False | radiator | 4.993320e-02 | False | electric_fan | 6.719030e-03 | False |
| 620 | 680473011644985345 | https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg | 1 | Lakeland_terrier | 0.796694 | True | West_Highland_white_terrier | 1.387090e-01 | True | Norwich_terrier | 1.625340e-02 | True |
| 621 | 680494726643068929 | https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg | 1 | kuvasz | 0.438627 | True | Samoyed | 1.116220e-01 | True | Great_Pyrenees | 6.406080e-02 | True |
| 622 | 680497766108381184 | https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg | 1 | Chihuahua | 0.538354 | True | muzzle | 8.428870e-02 | False | ski_mask | 7.669010e-02 | False |
| 623 | 680583894916304897 | https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg | 1 | tub | 0.889801 | False | bathtub | 3.235110e-02 | False | hippopotamus | 1.417730e-02 | False |
| 624 | 680609293079592961 | https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg | 1 | French_bulldog | 0.700764 | True | Chihuahua | 7.238960e-02 | True | American_Staffordshire_terrier | 3.961870e-02 | True |
| 625 | 680798457301471234 | https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg | 1 | ram | 0.499761 | False | hog | 2.837950e-01 | False | ox | 6.745510e-02 | False |
| 626 | 680801747103793152 | https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg | 1 | pug | 0.996720 | True | Labrador_retriever | 1.438790e-03 | True | Staffordshire_bullterrier | 5.176030e-04 | True |
| 627 | 680836378243002368 | https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg | 3 | Pembroke | 0.427781 | True | Shetland_sheepdog | 1.606690e-01 | True | Pomeranian | 1.112500e-01 | True |
| 628 | 680889648562991104 | https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg | 1 | Shetland_sheepdog | 0.876337 | True | collie | 7.833100e-02 | True | Pomeranian | 2.040750e-02 | True |
| 629 | 680913438424612864 | https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg | 1 | Pomeranian | 0.615678 | True | golden_retriever | 1.264550e-01 | True | Chihuahua | 8.718360e-02 | True |
| 630 | 680934982542561280 | https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg | 1 | Labrador_retriever | 0.784398 | True | Siberian_husky | 5.592510e-02 | True | beagle | 2.275010e-02 | True |
| 631 | 680940246314430465 | https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg | 1 | soft-coated_wheaten_terrier | 0.289598 | True | West_Highland_white_terrier | 1.571950e-01 | True | toy_poodle | 7.443470e-02 | True |
| 632 | 680959110691590145 | https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg | 2 | carousel | 0.500992 | False | feather_boa | 6.439000e-02 | False | pug | 4.435650e-02 | True |
| 633 | 680970795137544192 | https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg | 1 | pug | 0.713102 | True | whippet | 5.742630e-02 | True | quilt | 5.601810e-02 | False |
| 634 | 681193455364796417 | https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg | 1 | Pomeranian | 0.992619 | True | keeshond | 4.356450e-03 | True | schipperke | 8.140000e-04 | True |
| 635 | 681231109724700672 | https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg | 1 | Irish_setter | 0.406047 | True | cocker_spaniel | 3.456460e-01 | True | Airedale | 1.479120e-01 | True |
| 636 | 681242418453299201 | https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg | 1 | motor_scooter | 0.255934 | False | rifle | 1.452020e-01 | False | assault_rifle | 9.700010e-02 | False |
| 637 | 681261549936340994 | https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg | 1 | Tibetan_terrier | 0.382101 | True | miniature_poodle | 9.542940e-02 | True | Maltese_dog | 6.573770e-02 | True |
| 638 | 681281657291280384 | https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg | 1 | Saint_Bernard | 0.998830 | True | Pekinese | 3.913120e-04 | True | Great_Pyrenees | 2.235820e-04 | True |
| 639 | 681297372102656000 | https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg | 1 | Lhasa | 0.482401 | True | Shih-Tzu | 1.136720e-01 | True | Pomeranian | 9.622860e-02 | True |
| 640 | 681302363064414209 | https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg | 1 | frilled_lizard | 0.326259 | False | tailed_frog | 1.045390e-01 | False | axolotl | 7.247930e-02 | False |
| 641 | 681320187870711809 | https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg | 1 | Samoyed | 0.362596 | True | Eskimo_dog | 2.453950e-01 | True | Siberian_husky | 1.082320e-01 | True |
| 642 | 681339448655802368 | https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg | 1 | seat_belt | 0.532441 | False | Labrador_retriever | 9.461490e-02 | True | kuvasz | 8.986300e-02 | True |
| 643 | 681523177663676416 | https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg | 1 | Norfolk_terrier | 0.205067 | True | German_shepherd | 1.604390e-01 | True | chow | 1.562340e-01 | True |
| 644 | 681579835668455424 | https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg | 1 | Rottweiler | 0.760671 | True | Labrador_retriever | 9.658470e-02 | True | Staffordshire_bullterrier | 4.033260e-02 | True |
| 645 | 681610798867845120 | https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg | 1 | toy_poodle | 0.821704 | True | miniature_poodle | 1.160420e-01 | True | Yorkshire_terrier | 1.484720e-02 | True |
| 646 | 681654059175129088 | https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg | 1 | Pomeranian | 0.800538 | True | chow | 1.468920e-01 | True | Pekinese | 3.761250e-02 | True |
| 647 | 681679526984871937 | https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg | 1 | birdhouse | 0.472351 | False | teddy | 1.420580e-01 | False | pot | 3.290590e-02 | False |
| 648 | 681694085539872773 | https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg | 1 | toy_poodle | 0.920992 | True | miniature_poodle | 6.085720e-02 | True | Maltese_dog | 6.063720e-03 | True |
| 649 | 681891461017812993 | https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg | 1 | Chihuahua | 0.203570 | True | doormat | 1.343160e-01 | False | toy_terrier | 8.448230e-02 | True |
| 650 | 681981167097122816 | https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg | 1 | Labrador_retriever | 0.452577 | True | golden_retriever | 4.034200e-01 | True | beagle | 6.948570e-02 | True |
| 651 | 682003177596559360 | https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg | 1 | triceratops | 0.249872 | False | chimpanzee | 6.092930e-02 | False | mask | 5.022100e-02 | False |
| 652 | 682032003584274432 | https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg | 1 | schipperke | 0.997953 | True | groenendael | 6.764350e-04 | True | miniature_pinscher | 2.112460e-04 | True |
| 653 | 682047327939461121 | https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg | 1 | teddy | 0.364095 | False | doormat | 1.192430e-01 | False | toyshop | 3.512710e-02 | False |
| 654 | 682059653698686977 | https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg | 2 | jigsaw_puzzle | 0.995873 | False | Siamese_cat | 7.808850e-04 | False | pizza | 4.324800e-04 | False |
| 655 | 682242692827447297 | https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg | 1 | snorkel | 0.504983 | False | loggerhead | 3.452980e-01 | False | scuba_diver | 7.475390e-02 | False |
| 656 | 682259524040966145 | https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg | 1 | Siberian_husky | 0.439670 | True | Eskimo_dog | 3.404740e-01 | True | malamute | 1.012530e-01 | True |
| 657 | 682303737705140231 | https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg | 1 | seat_belt | 0.997659 | False | Lakeland_terrier | 1.730920e-03 | True | Airedale | 2.036100e-04 | True |
| 658 | 682389078323662849 | https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg | 1 | curly-coated_retriever | 0.482288 | True | flat-coated_retriever | 3.152860e-01 | True | Great_Dane | 6.217890e-02 | True |
| 659 | 682393905736888321 | https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg | 1 | vizsla | 0.657275 | True | paddle | 9.028640e-02 | False | Rhodesian_ridgeback | 4.822830e-02 | True |
| 660 | 682406705142087680 | https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg | 1 | wombat | 0.709344 | False | koala | 1.697580e-01 | False | beaver | 7.943340e-02 | False |
| 661 | 682429480204398592 | https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg | 1 | whippet | 0.594701 | True | Italian_greyhound | 3.140910e-01 | True | Mexican_hairless | 3.777330e-02 | True |
| 662 | 682638830361513985 | https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg | 1 | English_springer | 0.440781 | True | Cardigan | 4.111820e-01 | True | Border_collie | 2.241220e-02 | True |
| 663 | 682662431982772225 | https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg | 1 | beagle | 0.413824 | True | Cardigan | 2.635530e-01 | True | basset | 1.676180e-01 | True |
| 664 | 682697186228989953 | https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg | 1 | bald_eagle | 0.097232 | False | torch | 9.662150e-02 | False | cliff | 9.038550e-02 | False |
| 665 | 682750546109968385 | https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg | 1 | English_setter | 0.947198 | True | English_springer | 3.112770e-02 | True | Brittany_spaniel | 5.512470e-03 | True |
| 666 | 682788441537560576 | https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg | 1 | toyshop | 0.375610 | False | orange | 9.453760e-02 | False | teddy | 3.980820e-02 | False |
| 667 | 682962037429899265 | https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg | 1 | dingo | 0.278600 | False | Chihuahua | 1.552070e-01 | True | loupe | 1.535980e-01 | False |
| 668 | 683030066213818368 | https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg | 1 | boxer | 0.722218 | True | bull_mastiff | 1.938040e-01 | True | French_bulldog | 5.519370e-02 | True |
| 669 | 683078886620553216 | https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg | 1 | koala | 0.141432 | False | Eskimo_dog | 9.404420e-02 | True | wallaby | 8.523650e-02 | False |
| 670 | 683098815881154561 | https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg | 1 | golden_retriever | 0.889848 | True | kuvasz | 5.300820e-02 | True | Labrador_retriever | 3.788120e-02 | True |
| 671 | 683111407806746624 | https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg | 1 | cocker_spaniel | 0.901392 | True | soft-coated_wheaten_terrier | 2.860480e-02 | True | miniature_schnauzer | 1.780540e-02 | True |
| 672 | 683142553609318400 | https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg | 1 | Leonberg | 0.605851 | True | chow | 1.834700e-01 | True | German_shepherd | 7.966190e-02 | True |
| 673 | 683357973142474752 | https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg | 1 | Pembroke | 0.406509 | True | Cardigan | 1.548540e-01 | True | Siberian_husky | 1.363660e-01 | True |
| 674 | 683391852557561860 | https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg | 1 | French_bulldog | 0.992833 | True | Boston_bull | 4.748630e-03 | True | pug | 1.391690e-03 | True |
| 675 | 683449695444799489 | https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg | 1 | Lakeland_terrier | 0.303512 | True | soft-coated_wheaten_terrier | 2.114240e-01 | True | golden_retriever | 1.707250e-01 | True |
| 676 | 683462770029932544 | https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg | 1 | Italian_greyhound | 0.399560 | True | whippet | 2.671530e-01 | True | German_short-haired_pointer | 8.131910e-02 | True |
| 677 | 683481228088049664 | https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg | 1 | keeshond | 0.508951 | True | chow | 4.420160e-01 | True | German_shepherd | 1.320600e-02 | True |
| 678 | 683498322573824003 | https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg | 1 | Airedale | 0.945362 | True | Irish_terrier | 2.685000e-02 | True | Lakeland_terrier | 1.682640e-02 | True |
| 679 | 683742671509258241 | https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg | 1 | Pembroke | 0.895279 | True | Cardigan | 2.238500e-02 | True | cocker_spaniel | 1.704520e-02 | True |
| 680 | 683773439333797890 | https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg | 1 | miniature_pinscher | 0.072885 | True | Labrador_retriever | 5.786580e-02 | True | schipperke | 5.325660e-02 | True |
| 681 | 683828599284170753 | https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg | 1 | malamute | 0.577376 | True | Siberian_husky | 2.871310e-01 | True | Eskimo_dog | 1.175630e-01 | True |
| 682 | 683834909291606017 | https://pbs.twimg.com/ext_tw_video_thumb/68383... | 1 | Maltese_dog | 0.738449 | True | toy_poodle | 1.029920e-01 | True | Samoyed | 2.324720e-02 | True |
| 683 | 683849932751646720 | https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg | 1 | hog | 0.458855 | False | Mexican_hairless | 1.649060e-01 | True | wild_boar | 1.117000e-01 | False |
| 684 | 683852578183077888 | https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg | 1 | toy_poodle | 0.551352 | True | teddy | 1.806780e-01 | False | miniature_poodle | 1.640950e-01 | True |
| 685 | 683857920510050305 | https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg | 1 | bluetick | 0.174738 | True | Shetland_sheepdog | 1.261010e-01 | True | beagle | 1.228870e-01 | True |
| 686 | 684097758874210310 | https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg | 1 | Labrador_retriever | 0.627856 | True | German_short-haired_pointer | 1.736750e-01 | True | Chesapeake_Bay_retriever | 4.134170e-02 | True |
| 687 | 684122891630342144 | https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg | 1 | cheetah | 0.822193 | False | Arabian_camel | 4.697610e-02 | False | jaguar | 2.578480e-02 | False |
| 688 | 684177701129875456 | https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg | 1 | chow | 0.334783 | True | German_shepherd | 1.626470e-01 | True | golden_retriever | 1.386120e-01 | True |
| 689 | 684188786104872960 | https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg | 1 | kelpie | 0.537782 | True | American_Staffordshire_terrier | 8.295320e-02 | True | Staffordshire_bullterrier | 6.975990e-02 | True |
| 690 | 684195085588783105 | https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg | 1 | Chihuahua | 0.379365 | True | toy_terrier | 1.218090e-01 | True | Boston_bull | 9.598090e-02 | True |
| 691 | 684200372118904832 | https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg | 1 | llama | 0.681347 | False | ram | 1.201420e-01 | False | hog | 4.368580e-02 | False |
| 692 | 684222868335505415 | https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg | 1 | soft-coated_wheaten_terrier | 0.791182 | True | cocker_spaniel | 7.244410e-02 | True | teddy | 7.148650e-02 | False |
| 693 | 684225744407494656 | https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg | 2 | golden_retriever | 0.203249 | True | Samoyed | 6.795810e-02 | True | Great_Pyrenees | 6.532750e-02 | True |
| 694 | 684241637099323392 | https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg | 1 | Pembroke | 0.508498 | True | black-footed_ferret | 1.155320e-01 | False | weasel | 5.128010e-02 | False |
| 695 | 684460069371654144 | https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg | 1 | Labrador_retriever | 0.673691 | True | Chesapeake_Bay_retriever | 1.948970e-01 | True | American_Staffordshire_terrier | 5.947130e-02 | True |
| 696 | 684481074559381504 | https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg | 1 | Chihuahua | 0.937810 | True | Pomeranian | 2.030670e-02 | True | polecat | 1.735700e-02 | False |
| 697 | 684538444857667585 | https://pbs.twimg.com/ext_tw_video_thumb/68453... | 1 | Chihuahua | 0.702583 | True | Siamese_cat | 6.821810e-02 | False | macaque | 4.332460e-02 | False |
| 698 | 684567543613382656 | https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg | 1 | minibus | 0.401942 | False | llama | 2.291450e-01 | False | seat_belt | 2.093930e-01 | False |
| 699 | 684594889858887680 | https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg | 1 | Weimaraner | 0.948688 | True | English_setter | 3.535240e-02 | True | Brittany_spaniel | 3.878780e-03 | True |
| 700 | 684800227459624960 | https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg | 1 | miniature_schnauzer | 0.294457 | True | Norfolk_terrier | 1.618850e-01 | True | West_Highland_white_terrier | 1.209920e-01 | True |
| 701 | 684880619965411328 | https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg | 1 | clog | 0.081101 | False | spindle | 6.695660e-02 | False | agama | 6.088370e-02 | False |
| 702 | 684902183876321280 | https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg | 1 | Pembroke | 0.708034 | True | Cardigan | 2.914470e-01 | True | dingo | 1.845610e-04 | False |
| 703 | 684914660081053696 | https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg | 1 | shopping_cart | 0.460950 | False | chow | 2.612880e-01 | True | Labrador_retriever | 7.419380e-02 | True |
| 704 | 684926975086034944 | https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg | 1 | Labrador_retriever | 0.769412 | True | golden_retriever | 1.448930e-01 | True | lion | 2.143980e-02 | False |
| 705 | 684940049151070208 | https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg | 2 | Border_collie | 0.665578 | True | collie | 1.768460e-01 | True | Old_English_sheepdog | 6.517470e-02 | True |
| 706 | 684959798585110529 | https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg | 1 | llama | 0.379624 | False | triceratops | 1.627610e-01 | False | hog | 8.425150e-02 | False |
| 707 | 685169283572338688 | https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg | 1 | Bernese_mountain_dog | 0.975096 | True | Appenzeller | 1.457810e-02 | True | EntleBucher | 5.943480e-03 | True |
| 708 | 685198997565345792 | https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg | 1 | dishwasher | 0.888829 | False | stove | 1.341150e-02 | False | Old_English_sheepdog | 9.671380e-03 | True |
| 709 | 685268753634967552 | https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg | 1 | pug | 0.999044 | True | Norwegian_elkhound | 5.465860e-04 | True | bull_mastiff | 2.351950e-04 | True |
| 710 | 685307451701334016 | https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg | 1 | Pomeranian | 0.963176 | True | Shetland_sheepdog | 1.946830e-02 | True | keeshond | 8.604930e-03 | True |
| 711 | 685315239903100929 | https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg | 2 | chow | 0.470162 | True | Pomeranian | 1.596770e-01 | True | Eskimo_dog | 1.050740e-01 | True |
| 712 | 685321586178670592 | https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg | 1 | Boston_bull | 0.972483 | True | French_bulldog | 2.546930e-02 | True | boxer | 4.575440e-04 | True |
| 713 | 685325112850124800 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 714 | 685532292383666176 | https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg | 1 | white_wolf | 0.318524 | False | dingo | 2.154360e-01 | False | collie | 9.580520e-02 | True |
| 715 | 685547936038666240 | https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg | 1 | web_site | 0.923987 | False | oscilloscope | 9.712370e-03 | False | hand-held_computer | 8.768570e-03 | False |
| 716 | 685641971164143616 | https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg | 1 | Lakeland_terrier | 0.253839 | True | Airedale | 2.133490e-01 | True | three-toed_sloth | 8.383410e-02 | False |
| 717 | 685663452032069632 | https://pbs.twimg.com/ext_tw_video_thumb/68566... | 1 | Chesapeake_Bay_retriever | 0.171174 | True | tennis_ball | 9.064400e-02 | False | racket | 4.850770e-02 | False |
| 718 | 685667379192414208 | https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg | 1 | sliding_door | 0.344526 | False | doormat | 1.900270e-01 | False | washbasin | 4.632640e-02 | False |
| 719 | 685906723014619143 | https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg | 1 | Yorkshire_terrier | 0.414963 | True | briard | 6.350520e-02 | True | Pekinese | 5.368220e-02 | True |
| 720 | 685943807276412928 | https://pbs.twimg.com/ext_tw_video_thumb/68594... | 1 | papillon | 0.200812 | True | toy_terrier | 1.145120e-01 | True | Cardigan | 9.451960e-02 | True |
| 721 | 685973236358713344 | https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg | 1 | Siberian_husky | 0.450678 | True | Eskimo_dog | 4.302750e-01 | True | malamute | 1.185900e-01 | True |
| 722 | 686003207160610816 | https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg | 1 | damselfly | 0.190786 | False | common_newt | 9.813140e-02 | False | whiptail | 8.895820e-02 | False |
| 723 | 686007916130873345 | https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg | 1 | Rhodesian_ridgeback | 0.885301 | True | redbone | 4.233540e-02 | True | seat_belt | 1.049300e-02 | False |
| 724 | 686034024800862208 | https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg | 1 | Great_Dane | 0.236920 | True | Irish_wolfhound | 1.176080e-01 | True | Greater_Swiss_Mountain_dog | 1.039000e-01 | True |
| 725 | 686050296934563840 | https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg | 1 | Pomeranian | 0.985789 | True | keeshond | 4.082910e-03 | True | Pekinese | 3.333660e-03 | True |
| 726 | 686358356425093120 | https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg | 1 | pug | 0.985237 | True | bull_mastiff | 8.840620e-03 | True | boxer | 2.321430e-03 | True |
| 727 | 686377065986265092 | https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg | 1 | German_shepherd | 0.830816 | True | Leonberg | 7.632520e-02 | True | bloodhound | 3.744860e-02 | True |
| 728 | 686386521809772549 | https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg | 1 | Yorkshire_terrier | 0.477704 | True | silky_terrier | 1.716730e-01 | True | Australian_terrier | 8.833400e-02 | True |
| 729 | 686606069955735556 | https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg | 1 | Labrador_retriever | 0.320012 | True | Ibizan_hound | 2.081720e-01 | True | Saluki | 7.897470e-02 | True |
| 730 | 686618349602762752 | https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg | 1 | Rottweiler | 0.441331 | True | miniature_pinscher | 2.331800e-01 | True | Gordon_setter | 9.358200e-02 | True |
| 731 | 686683045143953408 | https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg | 1 | Norwich_terrier | 0.100499 | True | cocker_spaniel | 8.067110e-02 | True | golden_retriever | 7.940620e-02 | True |
| 732 | 686730991906516992 | https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg | 1 | Tibetan_mastiff | 0.338812 | True | Newfoundland | 1.809250e-01 | True | golden_retriever | 1.800230e-01 | True |
| 733 | 686749460672679938 | https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg | 1 | cheeseburger | 0.643808 | False | hotdog | 2.013780e-01 | False | bagel | 6.387970e-02 | False |
| 734 | 686947101016735744 | https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg | 1 | refrigerator | 0.799795 | False | medicine_chest | 1.825380e-01 | False | ice_bear | 1.430580e-03 | False |
| 735 | 687096057537363968 | https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg | 1 | Labrador_retriever | 0.417107 | True | Chesapeake_Bay_retriever | 3.417300e-01 | True | German_short-haired_pointer | 1.777020e-01 | True |
| 736 | 687102708889812993 | https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg | 1 | fiddler_crab | 0.992069 | False | quail | 2.490600e-03 | False | rock_crab | 1.512570e-03 | False |
| 737 | 687109925361856513 | https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg | 2 | borzoi | 0.883086 | True | whippet | 2.293360e-02 | True | Saluki | 2.160560e-02 | True |
| 738 | 687124485711986689 | https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg | 1 | car_mirror | 0.997121 | False | seat_belt | 3.750870e-04 | False | beagle | 2.162060e-04 | True |
| 739 | 687127927494963200 | https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg | 1 | pug | 0.178205 | True | Chihuahua | 1.491640e-01 | True | Shih-Tzu | 1.205050e-01 | True |
| 740 | 687312378585812992 | https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg | 1 | seat_belt | 0.703561 | False | Great_Dane | 1.399090e-01 | True | Weimaraner | 2.111250e-02 | True |
| 741 | 687317306314240000 | https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg | 1 | Shih-Tzu | 0.747208 | True | Maltese_dog | 9.102540e-02 | True | Lhasa | 3.578780e-02 | True |
| 742 | 687460506001633280 | https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg | 1 | Boston_bull | 0.223366 | True | boxer | 1.835960e-01 | True | French_bulldog | 1.769160e-01 | True |
| 743 | 687476254459715584 | https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg | 1 | wood_rabbit | 0.702725 | False | Angora | 1.906590e-01 | False | hare | 1.050720e-01 | False |
| 744 | 687480748861947905 | https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg | 1 | English_springer | 0.472273 | True | English_setter | 1.668620e-01 | True | Brittany_spaniel | 1.634110e-01 | True |
| 745 | 687494652870668288 | https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg | 1 | Rottweiler | 0.391471 | True | miniature_pinscher | 2.735950e-01 | True | Tibetan_mastiff | 4.169190e-02 | True |
| 746 | 687664829264453632 | https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg | 1 | pug | 0.957365 | True | French_bulldog | 3.855870e-02 | True | toy_poodle | 6.673610e-04 | True |
| 747 | 687704180304273409 | https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg | 1 | miniature_pinscher | 0.956063 | True | toy_terrier | 1.223060e-02 | True | Chihuahua | 5.397480e-03 | True |
| 748 | 687807801670897665 | https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg | 1 | Staffordshire_bullterrier | 0.151113 | True | boxer | 1.356970e-01 | True | American_Staffordshire_terrier | 8.659120e-02 | True |
| 749 | 687818504314159109 | https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg | 1 | Lakeland_terrier | 0.873029 | True | soft-coated_wheaten_terrier | 6.092420e-02 | True | toy_poodle | 1.703090e-02 | True |
| 750 | 687826841265172480 | https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg | 1 | Pomeranian | 0.997210 | True | Pekinese | 8.032410e-04 | True | keeshond | 3.725150e-04 | True |
| 751 | 688064179421470721 | https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg | 1 | Eskimo_dog | 0.240602 | True | Norwegian_elkhound | 1.803690e-01 | True | Siberian_husky | 9.073880e-02 | True |
| 752 | 688116655151435777 | https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg | 1 | pug | 0.973819 | True | Chihuahua | 1.089100e-02 | True | Staffordshire_bullterrier | 6.863890e-03 | True |
| 753 | 688179443353796608 | https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg | 1 | sorrel | 0.811520 | False | horse_cart | 2.482010e-02 | False | Arabian_camel | 1.515530e-02 | False |
| 754 | 688211956440801280 | https://pbs.twimg.com/ext_tw_video_thumb/68821... | 1 | bannister | 0.369449 | False | four-poster | 1.053070e-01 | False | shoji | 9.876690e-02 | False |
| 755 | 688385280030670848 | https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg | 2 | golden_retriever | 0.900437 | True | cocker_spaniel | 2.229250e-02 | True | sombrero | 1.499680e-02 | False |
| 756 | 688519176466644993 | https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg | 1 | Pembroke | 0.696372 | True | Cardigan | 1.210520e-01 | True | Shetland_sheepdog | 5.059200e-02 | True |
| 757 | 688547210804498433 | https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg | 1 | papillon | 0.531279 | True | Blenheim_spaniel | 2.141970e-01 | True | Border_collie | 5.383990e-02 | True |
| 758 | 688789766343622656 | https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg | 1 | American_Staffordshire_terrier | 0.599660 | True | Staffordshire_bullterrier | 3.809760e-01 | True | bull_mastiff | 3.889020e-03 | True |
| 759 | 688804835492233216 | https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg | 3 | malinois | 0.199512 | True | German_shepherd | 9.679730e-02 | True | Saluki | 8.284820e-02 | True |
| 760 | 688828561667567616 | https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg | 1 | Cardigan | 0.614231 | True | skunk | 1.393920e-01 | False | toilet_tissue | 3.115820e-02 | False |
| 761 | 688894073864884227 | https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg | 1 | hog | 0.669996 | False | guinea_pig | 7.734700e-02 | False | hamster | 6.239820e-02 | False |
| 762 | 688898160958271489 | https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg | 1 | Ibizan_hound | 0.853170 | True | Chihuahua | 3.989730e-02 | True | Italian_greyhound | 3.521960e-02 | True |
| 763 | 688908934925697024 | https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg | 1 | crane | 0.158859 | False | pier | 1.300160e-01 | False | bell_cote | 8.774140e-02 | False |
| 764 | 688916208532455424 | https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg | 1 | Pembroke | 0.430544 | True | red_fox | 2.065760e-01 | False | Pomeranian | 1.543520e-01 | True |
| 765 | 689143371370250240 | https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg | 1 | English_springer | 0.303781 | True | papillon | 1.651320e-01 | True | Welsh_springer_spaniel | 1.490510e-01 | True |
| 766 | 689154315265683456 | https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg | 1 | cocker_spaniel | 0.816044 | True | golden_retriever | 5.413540e-02 | True | Airedale | 3.064810e-02 | True |
| 767 | 689275259254616065 | https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg | 1 | American_Staffordshire_terrier | 0.215161 | True | Chesapeake_Bay_retriever | 7.905090e-02 | True | Doberman | 7.022590e-02 | True |
| 768 | 689280876073582592 | https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg | 3 | Chihuahua | 0.637546 | True | American_Staffordshire_terrier | 1.506940e-01 | True | Staffordshire_bullterrier | 1.039530e-01 | True |
| 769 | 689283819090870273 | https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg | 1 | Scotch_terrier | 0.267979 | True | affenpinscher | 1.996190e-01 | True | cairn | 1.274690e-01 | True |
| 770 | 689289219123089408 | https://pbs.twimg.com/ext_tw_video_thumb/68928... | 1 | snowmobile | 0.254642 | False | assault_rifle | 1.295580e-01 | False | rifle | 1.108750e-01 | False |
| 771 | 689517482558820352 | https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg | 1 | Pembroke | 0.799319 | True | Cardigan | 1.895370e-01 | True | papillon | 3.386190e-03 | True |
| 772 | 689557536375177216 | https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg | 1 | Eskimo_dog | 0.169482 | True | Siberian_husky | 1.616550e-01 | True | dingo | 1.544140e-01 | False |
| 773 | 689599056876867584 | https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg | 1 | dogsled | 0.426494 | False | cocker_spaniel | 7.310140e-02 | True | Chihuahua | 7.032290e-02 | True |
| 774 | 689623661272240129 | https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg | 1 | toy_poodle | 0.279604 | True | mashed_potato | 2.085640e-01 | False | Labrador_retriever | 7.748090e-02 | True |
| 775 | 689659372465688576 | https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg | 1 | bustard | 0.225221 | False | koala | 5.762530e-02 | False | goose | 5.356890e-02 | False |
| 776 | 689661964914655233 | https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg | 1 | Italian_greyhound | 0.322818 | True | whippet | 2.469660e-01 | True | Chihuahua | 1.225410e-01 | True |
| 777 | 689835978131935233 | https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg | 1 | collie | 0.600186 | True | Shetland_sheepdog | 2.989390e-01 | True | borzoi | 2.261560e-02 | True |
| 778 | 689877686181715968 | https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg | 1 | Old_English_sheepdog | 0.269155 | True | Tibetan_terrier | 1.114960e-01 | True | Lakeland_terrier | 1.049390e-01 | True |
| 779 | 689905486972461056 | https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg | 4 | Pomeranian | 0.943331 | True | Shetland_sheepdog | 2.367510e-02 | True | chow | 7.164950e-03 | True |
| 780 | 689977555533848577 | https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg | 1 | cowboy_hat | 0.291081 | False | Labrador_retriever | 1.796250e-01 | True | sombrero | 1.214930e-01 | False |
| 781 | 689999384604450816 | https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg | 1 | standard_poodle | 0.444499 | True | English_springer | 1.298300e-01 | True | pug | 7.380570e-02 | True |
| 782 | 690005060500217858 | https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg | 1 | Samoyed | 0.270287 | True | Great_Pyrenees | 1.140270e-01 | True | teddy | 7.247480e-02 | False |
| 783 | 690015576308211712 | https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg | 2 | malamute | 0.949609 | True | Siberian_husky | 3.308370e-02 | True | Eskimo_dog | 1.666270e-02 | True |
| 784 | 690021994562220032 | https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg | 1 | badger | 0.289550 | False | weasel | 9.914020e-02 | False | malamute | 4.069580e-02 | True |
| 785 | 690248561355657216 | https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg | 1 | motor_scooter | 0.382690 | False | moped | 3.180170e-01 | False | pickup | 4.062540e-02 | False |
| 786 | 690360449368465409 | https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg | 1 | pug | 0.686933 | True | French_bulldog | 7.635870e-02 | True | Brabancon_griffon | 3.500700e-02 | True |
| 787 | 690374419777196032 | https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg | 1 | kuvasz | 0.286345 | True | Labrador_retriever | 1.071440e-01 | True | ice_bear | 8.508580e-02 | False |
| 788 | 690400367696297985 | https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg | 1 | Pembroke | 0.426459 | True | papillon | 3.173680e-01 | True | Shetland_sheepdog | 7.761600e-02 | True |
| 789 | 690597161306841088 | https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg | 1 | Lhasa | 0.097500 | True | koala | 9.193390e-02 | False | sunglasses | 9.150480e-02 | False |
| 790 | 690649993829576704 | https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg | 1 | bighorn | 0.215438 | False | hyena | 1.379280e-01 | False | Mexican_hairless | 9.817080e-02 | True |
| 791 | 690690673629138944 | https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg | 1 | bath_towel | 0.194532 | False | radiator | 1.277760e-01 | False | Maltese_dog | 8.962460e-02 | True |
| 792 | 690728923253055490 | https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg | 1 | kuvasz | 0.422806 | True | golden_retriever | 2.915860e-01 | True | Great_Pyrenees | 7.618920e-02 | True |
| 793 | 690735892932222976 | https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg | 1 | golden_retriever | 0.883229 | True | Labrador_retriever | 1.096350e-01 | True | kuvasz | 2.795070e-03 | True |
| 794 | 690932576555528194 | https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg | 1 | snorkel | 0.526536 | False | muzzle | 4.808880e-02 | False | scuba_diver | 3.422620e-02 | False |
| 795 | 690938899477221376 | https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg | 1 | geyser | 0.370318 | False | seashore | 2.748880e-01 | False | beacon | 4.639700e-02 | False |
| 796 | 690959652130045952 | https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg | 2 | golden_retriever | 0.862964 | True | Labrador_retriever | 4.486530e-02 | True | Saluki | 1.246780e-02 | True |
| 797 | 691090071332753408 | https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg | 1 | barrow | 0.241637 | False | tub | 2.384500e-01 | False | bathtub | 1.672850e-01 | False |
| 798 | 691096613310316544 | https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg | 1 | borzoi | 0.441269 | True | llama | 2.782700e-01 | False | Arabian_camel | 6.350350e-02 | False |
| 799 | 691321916024623104 | https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg | 1 | Rottweiler | 0.508981 | True | German_shepherd | 2.078970e-01 | True | kelpie | 9.435330e-02 | True |
| 800 | 691416866452082688 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 801 | 691444869282295808 | https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg | 2 | Bernese_mountain_dog | 0.767563 | True | Border_collie | 8.580460e-02 | True | EntleBucher | 4.376930e-02 | True |
| 802 | 691459709405118465 | https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg | 1 | Shetland_sheepdog | 0.551206 | True | collie | 2.325440e-01 | True | Border_collie | 9.521820e-02 | True |
| 803 | 691483041324204033 | https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg | 1 | bloodhound | 0.886232 | True | black-and-tan_coonhound | 7.741960e-02 | True | Gordon_setter | 9.826430e-03 | True |
| 804 | 691675652215414786 | https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg | 1 | Chihuahua | 0.182898 | True | teddy | 1.280770e-01 | False | West_Highland_white_terrier | 9.787480e-02 | True |
| 805 | 691756958957883396 | https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg | 1 | Saint_Bernard | 0.342571 | True | boxer | 2.890960e-01 | True | Pembroke | 7.646340e-02 | True |
| 806 | 691820333922455552 | https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg | 1 | minivan | 0.332756 | False | sports_car | 1.294520e-01 | False | limousine | 7.393590e-02 | False |
| 807 | 692017291282812928 | https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg | 1 | Tibetan_terrier | 0.247565 | True | cocker_spaniel | 1.213770e-01 | True | bow_tie | 9.936250e-02 | False |
| 808 | 692142790915014657 | https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg | 3 | toy_poodle | 0.670068 | True | teddy | 1.908980e-01 | False | miniature_poodle | 3.217790e-02 | True |
| 809 | 692158366030913536 | https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg | 1 | pug | 0.956565 | True | swing | 1.890670e-02 | False | toy_poodle | 1.354440e-02 | True |
| 810 | 692187005137076224 | https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg | 2 | Siberian_husky | 0.810592 | True | malamute | 1.197450e-01 | True | Eskimo_dog | 2.926480e-02 | True |
| 811 | 692417313023332352 | https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg | 1 | bison | 0.208922 | False | mink | 1.699450e-01 | False | polecat | 1.444940e-01 | False |
| 812 | 692530551048294401 | https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg | 1 | Siberian_husky | 0.486428 | True | Eskimo_dog | 4.485180e-01 | True | white_wolf | 4.150610e-02 | False |
| 813 | 692535307825213440 | https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg | 1 | pug | 0.413090 | True | French_bulldog | 1.998650e-01 | True | Chihuahua | 8.199060e-02 | True |
| 814 | 692568918515392513 | https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg | 2 | golden_retriever | 0.636845 | True | Labrador_retriever | 1.633620e-01 | True | Pekinese | 4.555400e-02 | True |
| 815 | 692752401762250755 | https://pbs.twimg.com/tweet_video_thumb/CZ0mhd... | 1 | Samoyed | 0.471276 | True | Siberian_husky | 1.588500e-01 | True | Eskimo_dog | 1.386720e-01 | True |
| 816 | 692828166163931137 | https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg | 1 | Samoyed | 0.985857 | True | Arctic_fox | 7.851640e-03 | False | white_wolf | 3.277700e-03 | False |
| 817 | 692894228850999298 | https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg | 1 | German_short-haired_pointer | 0.876977 | True | bluetick | 3.661510e-02 | True | basset | 1.784770e-02 | True |
| 818 | 692901601640583168 | https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg | 1 | soft-coated_wheaten_terrier | 0.403496 | True | cocker_spaniel | 1.351640e-01 | True | golden_retriever | 8.871870e-02 | True |
| 819 | 692905862751522816 | https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg | 1 | Mexican_hairless | 0.162638 | True | Doberman | 1.562870e-01 | True | Rhodesian_ridgeback | 8.147780e-02 | True |
| 820 | 692919143163629568 | https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg | 1 | Saint_Bernard | 0.612635 | True | English_springer | 2.697440e-01 | True | boxer | 4.866550e-02 | True |
| 821 | 693095443459342336 | https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg | 1 | ice_lolly | 0.660099 | False | neck_brace | 3.956290e-02 | False | Yorkshire_terrier | 3.348780e-02 | True |
| 822 | 693109034023534592 | https://pbs.twimg.com/ext_tw_video_thumb/69310... | 1 | cocker_spaniel | 0.740013 | True | Welsh_springer_spaniel | 8.873900e-02 | True | golden_retriever | 4.746980e-02 | True |
| 823 | 693155686491000832 | https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg | 3 | Shih-Tzu | 0.697480 | True | Lhasa | 2.001510e-01 | True | Tibetan_terrier | 9.097040e-02 | True |
| 824 | 693231807727280129 | https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg | 1 | vizsla | 0.876413 | True | Chesapeake_Bay_retriever | 7.839980e-02 | True | Rhodesian_ridgeback | 3.219410e-02 | True |
| 825 | 693262851218264065 | https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg | 1 | golden_retriever | 0.989333 | True | Labrador_retriever | 7.946440e-03 | True | kuvasz | 7.489320e-04 | True |
| 826 | 693280720173801472 | https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg | 1 | Labrador_retriever | 0.340008 | True | bull_mastiff | 1.753160e-01 | True | box_turtle | 1.643370e-01 | False |
| 827 | 693486665285931008 | https://pbs.twimg.com/ext_tw_video_thumb/69348... | 1 | sea_lion | 0.519811 | False | Siamese_cat | 2.909710e-01 | False | black-footed_ferret | 3.996670e-02 | False |
| 828 | 693590843962331137 | https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg | 1 | dining_table | 0.383448 | False | grey_fox | 1.031910e-01 | False | Siamese_cat | 9.825580e-02 | False |
| 829 | 693622659251335168 | https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg | 1 | malamute | 0.449298 | True | Siberian_husky | 3.850750e-01 | True | Eskimo_dog | 1.634850e-01 | True |
| 830 | 693629975228977152 | https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg | 1 | pug | 0.841987 | True | French_bulldog | 6.979110e-02 | True | Boston_bull | 3.871990e-02 | True |
| 831 | 693642232151285760 | https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg | 1 | Scottish_deerhound | 0.111893 | True | bluetick | 7.430180e-02 | True | German_short-haired_pointer | 6.700040e-02 | True |
| 832 | 693647888581312512 | https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg | 1 | washbasin | 0.272451 | False | doormat | 1.658710e-01 | False | bathtub | 6.636840e-02 | False |
| 833 | 693942351086120961 | https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg | 1 | groenendael | 0.550796 | True | Norwegian_elkhound | 1.547700e-01 | True | schipperke | 8.080190e-02 | True |
| 834 | 694001791655137281 | https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg | 1 | Pembroke | 0.769999 | True | Cardigan | 2.292280e-01 | True | Chihuahua | 2.468370e-04 | True |
| 835 | 694183373896572928 | https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg | 1 | teddy | 0.441499 | False | Pekinese | 8.087000e-02 | True | Shih-Tzu | 7.209880e-02 | True |
| 836 | 694206574471057408 | https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg | 1 | Shih-Tzu | 0.352547 | True | toy_poodle | 1.557200e-01 | True | Maltese_dog | 1.166570e-01 | True |
| 837 | 694329668942569472 | https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg | 1 | boxer | 0.990060 | True | bull_mastiff | 7.436270e-03 | True | Saint_Bernard | 1.617290e-03 | True |
| 838 | 694352839993344000 | https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg | 2 | Australian_terrier | 0.407886 | True | Yorkshire_terrier | 3.281730e-01 | True | silky_terrier | 1.084040e-01 | True |
| 839 | 694356675654983680 | https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg | 1 | hamster | 0.429871 | False | Pomeranian | 1.442720e-01 | True | pretzel | 1.272200e-01 | False |
| 840 | 694669722378485760 | https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg | 2 | beaver | 0.457094 | False | mongoose | 2.282980e-01 | False | marmot | 1.483090e-01 | False |
| 841 | 694905863685980160 | https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg | 1 | bow_tie | 0.449268 | False | fur_coat | 1.390990e-01 | False | black-footed_ferret | 8.223200e-02 | False |
| 842 | 695051054296211456 | https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg | 1 | Boston_bull | 0.761454 | True | pug | 7.539490e-02 | True | Chihuahua | 4.159780e-02 | True |
| 843 | 695064344191721472 | https://pbs.twimg.com/ext_tw_video_thumb/69506... | 1 | seat_belt | 0.522211 | False | sunglasses | 7.755210e-02 | False | ice_lolly | 5.177400e-02 | False |
| 844 | 695074328191332352 | https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg | 1 | Shih-Tzu | 0.510106 | True | Tibetan_terrier | 7.198090e-02 | True | Lhasa | 6.923100e-02 | True |
| 845 | 695095422348574720 | https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg | 1 | papillon | 0.227784 | True | Chihuahua | 2.181280e-01 | True | Border_collie | 9.345740e-02 | True |
| 846 | 695314793360662529 | https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg | 2 | Maltese_dog | 0.678547 | True | Lhasa | 1.250460e-01 | True | Pekinese | 4.899880e-02 | True |
| 847 | 695409464418041856 | https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg | 1 | pug | 0.997445 | True | bull_mastiff | 1.748550e-03 | True | Pekinese | 3.044040e-04 | True |
| 848 | 695446424020918272 | https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg | 1 | basenji | 0.748904 | True | Cardigan | 1.211020e-01 | True | Pembroke | 1.117670e-01 | True |
| 849 | 695629776980148225 | https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg | 1 | Old_English_sheepdog | 0.693857 | True | otterhound | 2.321170e-01 | True | West_Highland_white_terrier | 1.286670e-02 | True |
| 850 | 695767669421768709 | https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg | 1 | soft-coated_wheaten_terrier | 0.805139 | True | Lakeland_terrier | 1.216620e-01 | True | Afghan_hound | 2.330250e-02 | True |
| 851 | 695794761660297217 | https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg | 1 | Samoyed | 0.962139 | True | Arctic_fox | 3.055280e-02 | False | white_wolf | 1.482340e-03 | False |
| 852 | 695816827381944320 | https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg | 1 | Pomeranian | 0.382234 | True | chow | 2.083020e-01 | True | sunglasses | 1.313280e-01 | False |
| 853 | 696405997980676096 | https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg | 1 | borzoi | 0.132845 | True | Walker_hound | 8.600480e-02 | True | Great_Pyrenees | 6.558230e-02 | True |
| 854 | 696488710901260288 | https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg | 1 | briard | 0.369063 | True | Scotch_terrier | 1.682040e-01 | True | giant_schnauzer | 1.205530e-01 | True |
| 855 | 696713835009417216 | https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg | 1 | car_mirror | 0.379797 | False | Chesapeake_Bay_retriever | 3.215890e-01 | True | vizsla | 1.169310e-01 | True |
| 856 | 696754882863349760 | https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg | 1 | weasel | 0.137832 | False | toy_poodle | 9.837810e-02 | True | Scottish_deerhound | 9.739670e-02 | True |
| 857 | 696877980375769088 | https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg | 1 | space_heater | 0.206876 | False | spatula | 1.234500e-01 | False | vacuum | 1.192180e-01 | False |
| 858 | 696886256886657024 | https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg | 1 | kuvasz | 0.383941 | True | golden_retriever | 2.890850e-01 | True | dingo | 5.654810e-02 | False |
| 859 | 696894894812565505 | https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg | 1 | Appenzeller | 0.665628 | True | beagle | 1.047950e-01 | True | Greater_Swiss_Mountain_dog | 6.786800e-02 | True |
| 860 | 696900204696625153 | https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg | 1 | Chihuahua | 0.297735 | True | Pembroke | 2.669530e-01 | True | basenji | 1.368140e-01 | True |
| 861 | 697242256848379904 | https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg | 1 | grey_fox | 0.236031 | False | Siamese_cat | 1.657910e-01 | False | Eskimo_dog | 6.353280e-02 | True |
| 862 | 697255105972801536 | https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg | 1 | Great_Dane | 0.173989 | True | malinois | 1.658880e-01 | True | Doberman | 1.198900e-01 | True |
| 863 | 697259378236399616 | https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg | 1 | Great_Dane | 0.999223 | True | boxer | 1.865250e-04 | True | whippet | 1.510710e-04 | True |
| 864 | 697270446429966336 | https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg | 1 | toy_poodle | 0.880014 | True | miniature_poodle | 1.001360e-01 | True | Norfolk_terrier | 7.027060e-03 | True |
| 865 | 697463031882764288 | https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg | 1 | Labrador_retriever | 0.999885 | True | golden_retriever | 9.758170e-05 | True | pug | 8.267760e-06 | True |
| 866 | 697482927769255936 | https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg | 1 | bath_towel | 0.110587 | False | Christmas_stocking | 1.085730e-01 | False | weasel | 1.054420e-01 | False |
| 867 | 697575480820686848 | https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg | 1 | Siamese_cat | 0.256698 | False | whippet | 1.198050e-01 | True | bull_mastiff | 1.025950e-01 | True |
| 868 | 697596423848730625 | https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg | 1 | Shetland_sheepdog | 0.621668 | True | collie | 3.665780e-01 | True | Pembroke | 7.698190e-03 | True |
| 869 | 697616773278015490 | https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg | 1 | Lhasa | 0.521931 | True | Shih-Tzu | 4.034510e-01 | True | Tibetan_terrier | 3.991220e-02 | True |
| 870 | 697881462549430272 | https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg | 1 | washbasin | 0.176423 | False | paper_towel | 1.674620e-01 | False | toilet_tissue | 9.802910e-02 | False |
| 871 | 697943111201378304 | https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg | 1 | Great_Dane | 0.126924 | True | Greater_Swiss_Mountain_dog | 1.100370e-01 | True | German_short-haired_pointer | 9.081600e-02 | True |
| 872 | 697990423684476929 | https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg | 2 | Pembroke | 0.984783 | True | Cardigan | 1.501800e-02 | True | Shetland_sheepdog | 7.358600e-05 | True |
| 873 | 697995514407682048 | https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg | 1 | Staffordshire_bullterrier | 0.280222 | True | Boston_bull | 1.614780e-01 | True | American_Staffordshire_terrier | 1.268840e-01 | True |
| 874 | 698178924120031232 | https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg | 1 | Chesapeake_Bay_retriever | 0.351868 | True | malinois | 2.077530e-01 | True | Labrador_retriever | 1.546060e-01 | True |
| 875 | 698195409219559425 | https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg | 1 | Labrador_retriever | 0.643690 | True | American_Staffordshire_terrier | 1.026840e-01 | True | dalmatian | 5.000780e-02 | True |
| 876 | 698262614669991936 | https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg | 1 | Italian_greyhound | 0.107948 | True | basset | 7.523000e-02 | True | Staffordshire_bullterrier | 6.943610e-02 | True |
| 877 | 698342080612007937 | https://pbs.twimg.com/ext_tw_video_thumb/69834... | 1 | boxer | 0.883048 | True | Saint_Bernard | 3.057940e-02 | True | Staffordshire_bullterrier | 1.299410e-02 | True |
| 878 | 698355670425473025 | https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg | 1 | pug | 0.990191 | True | Pekinese | 2.798540e-03 | True | sunglasses | 1.309520e-03 | False |
| 879 | 698549713696649216 | https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg | 1 | French_bulldog | 0.998544 | True | Boston_bull | 1.403940e-03 | True | boxer | 2.322000e-05 | True |
| 880 | 698635131305795584 | https://pbs.twimg.com/ext_tw_video_thumb/69863... | 1 | Samoyed | 0.158464 | True | kuvasz | 8.940250e-02 | True | West_Highland_white_terrier | 2.503730e-02 | True |
| 881 | 698703483621523456 | https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg | 1 | Brittany_spaniel | 0.931963 | True | Welsh_springer_spaniel | 3.069490e-02 | True | beagle | 1.289610e-02 | True |
| 882 | 698710712454139905 | https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg | 1 | Samoyed | 0.329895 | True | shoji | 1.657720e-01 | False | prison | 1.035960e-01 | False |
| 883 | 698907974262222848 | https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg | 3 | German_short-haired_pointer | 0.983131 | True | bluetick | 5.557720e-03 | True | curly-coated_retriever | 3.322210e-03 | True |
| 884 | 698953797952008193 | https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg | 1 | Italian_greyhound | 0.382378 | True | redbone | 1.022550e-01 | True | shower_cap | 7.683370e-02 | False |
| 885 | 698989035503689728 | https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg | 1 | Norfolk_terrier | 0.246340 | True | Irish_terrier | 2.433490e-01 | True | golden_retriever | 8.587100e-02 | True |
| 886 | 699036661657767936 | https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg | 1 | Chihuahua | 0.222943 | True | toyshop | 1.799380e-01 | False | Weimaraner | 1.630330e-01 | True |
| 887 | 699072405256409088 | https://pbs.twimg.com/ext_tw_video_thumb/69907... | 1 | Shih-Tzu | 0.599587 | True | Pekinese | 2.130690e-01 | True | Maltese_dog | 1.542930e-01 | True |
| 888 | 699079609774645248 | https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg | 3 | schipperke | 0.667324 | True | Chesapeake_Bay_retriever | 1.195500e-01 | True | kelpie | 9.759950e-02 | True |
| 889 | 699088579889332224 | https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg | 1 | mousetrap | 0.456186 | False | banded_gecko | 2.586770e-01 | False | common_iguana | 6.178260e-02 | False |
| 890 | 699323444782047232 | https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg | 1 | Labrador_retriever | 0.309696 | True | doormat | 3.037000e-01 | False | sliding_door | 7.726600e-02 | False |
| 891 | 699370870310113280 | https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg | 1 | cairn | 0.337557 | True | Chihuahua | 2.091300e-01 | True | Border_terrier | 1.369460e-01 | True |
| 892 | 699413908797464576 | https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg | 1 | Samoyed | 0.517479 | True | malamute | 1.559350e-01 | True | Eskimo_dog | 9.500090e-02 | True |
| 893 | 699423671849451520 | https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg | 1 | pug | 0.997860 | True | French_bulldog | 1.824860e-03 | True | bull_mastiff | 2.989400e-04 | True |
| 894 | 699434518667751424 | https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg | 1 | golden_retriever | 0.836572 | True | kuvasz | 1.059460e-01 | True | Labrador_retriever | 2.514390e-02 | True |
| 895 | 699446877801091073 | https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg | 3 | Pembroke | 0.969400 | True | Cardigan | 2.605880e-02 | True | Chihuahua | 3.505470e-03 | True |
| 896 | 699691744225525762 | https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg | 1 | hippopotamus | 0.982269 | False | sea_lion | 6.295150e-03 | False | dugong | 5.767950e-03 | False |
| 897 | 699775878809702401 | https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg | 1 | Dandie_Dinmont | 0.271683 | True | Old_English_sheepdog | 1.649310e-01 | True | otterhound | 1.059180e-01 | True |
| 898 | 699779630832685056 | https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg | 1 | malinois | 0.706038 | True | German_shepherd | 1.656550e-01 | True | Great_Dane | 5.904750e-02 | True |
| 899 | 699788877217865730 | https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg | 1 | Border_terrier | 0.355060 | True | toy_poodle | 1.697360e-01 | True | Norwegian_elkhound | 9.988370e-02 | True |
| 900 | 699801817392291840 | https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg | 2 | golden_retriever | 0.808978 | True | Irish_setter | 4.242810e-02 | True | Labrador_retriever | 2.353640e-02 | True |
| 901 | 700002074055016451 | https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg | 1 | Chihuahua | 0.369488 | True | schipperke | 2.433670e-01 | True | pug | 1.616140e-01 | True |
| 902 | 700029284593901568 | https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg | 1 | West_Highland_white_terrier | 0.726571 | True | Maltese_dog | 1.768280e-01 | True | Dandie_Dinmont | 7.013380e-02 | True |
| 903 | 700062718104104960 | https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg | 1 | hummingbird | 0.180998 | False | peacock | 1.351790e-01 | False | eel | 7.537100e-02 | False |
| 904 | 700143752053182464 | https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg | 1 | golden_retriever | 0.532460 | True | crossword_puzzle | 1.037960e-01 | False | binder | 1.003710e-01 | False |
| 905 | 700151421916807169 | https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg | 1 | tennis_ball | 0.328236 | False | Italian_greyhound | 1.768380e-01 | True | Staffordshire_bullterrier | 1.340800e-01 | True |
| 906 | 700167517596164096 | https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg | 1 | beagle | 0.162585 | True | Pembroke | 1.204810e-01 | True | Siberian_husky | 1.102840e-01 | True |
| 907 | 700462010979500032 | https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg | 1 | hamster | 0.678651 | False | Pomeranian | 1.102680e-01 | True | Angora | 1.041390e-01 | False |
| 908 | 700505138482569216 | https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg | 1 | bath_towel | 0.449684 | False | Norwegian_elkhound | 1.602050e-01 | True | Great_Dane | 4.866580e-02 | True |
| 909 | 700518061187723268 | https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg | 1 | American_Staffordshire_terrier | 0.569501 | True | Staffordshire_bullterrier | 2.113080e-01 | True | Chihuahua | 1.218390e-01 | True |
| 910 | 700747788515020802 | https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg | 1 | Great_Pyrenees | 0.481333 | True | Samoyed | 3.117690e-01 | True | Maltese_dog | 7.496210e-02 | True |
| 911 | 700796979434098688 | https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg | 1 | tailed_frog | 0.652712 | False | tree_frog | 2.802120e-01 | False | bullfrog | 4.017750e-02 | False |
| 912 | 700847567345688576 | https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg | 1 | Rhodesian_ridgeback | 0.252514 | True | redbone | 1.530050e-01 | True | whippet | 1.351990e-01 | True |
| 913 | 700864154249383937 | https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg | 1 | kuvasz | 0.805857 | True | Great_Pyrenees | 1.872720e-01 | True | Samoyed | 3.490900e-03 | True |
| 914 | 700890391244103680 | https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg | 1 | white_wolf | 0.166563 | False | schipperke | 1.223560e-01 | True | West_Highland_white_terrier | 1.192470e-01 | True |
| 915 | 701214700881756160 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 916 | 701545186879471618 | https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg | 1 | Border_collie | 0.280893 | True | Cardigan | 1.125500e-01 | True | toy_terrier | 5.331720e-02 | True |
| 917 | 701570477911896070 | https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg | 1 | Yorkshire_terrier | 0.907990 | True | silky_terrier | 7.688290e-02 | True | Australian_terrier | 8.472760e-03 | True |
| 918 | 701601587219795968 | https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg | 1 | Chihuahua | 0.993661 | True | Pembroke | 1.504870e-03 | True | toy_terrier | 8.666070e-04 | True |
| 919 | 701889187134500865 | https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg | 1 | French_bulldog | 0.902856 | True | Staffordshire_bullterrier | 2.263410e-02 | True | soap_dispenser | 1.197320e-02 | False |
| 920 | 701952816642965504 | https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg | 1 | toy_poodle | 0.331707 | True | miniature_poodle | 2.724850e-01 | True | standard_poodle | 1.694150e-01 | True |
| 921 | 701981390485725185 | https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg | 1 | Pomeranian | 0.491022 | True | weasel | 1.308790e-01 | False | Yorkshire_terrier | 9.924100e-02 | True |
| 922 | 702217446468493312 | https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg | 1 | golden_retriever | 0.242419 | True | chow | 2.268000e-01 | True | cocker_spaniel | 1.940860e-01 | True |
| 923 | 702276748847800320 | https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg | 1 | Boston_bull | 0.697303 | True | French_bulldog | 2.390150e-01 | True | American_Staffordshire_terrier | 1.983810e-02 | True |
| 924 | 702321140488925184 | https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg | 3 | West_Highland_white_terrier | 0.769159 | True | Scotch_terrier | 6.436880e-02 | True | Old_English_sheepdog | 4.376340e-02 | True |
| 925 | 702539513671897089 | https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg | 3 | Pomeranian | 0.714367 | True | Shih-Tzu | 4.057410e-02 | True | silky_terrier | 3.251050e-02 | True |
| 926 | 702598099714314240 | https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg | 1 | kelpie | 0.219179 | True | badger | 1.335840e-01 | False | Siamese_cat | 7.444000e-02 | False |
| 927 | 702671118226825216 | https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg | 1 | bloodhound | 0.381227 | True | Sussex_spaniel | 2.120170e-01 | True | clumber | 1.286220e-01 | True |
| 928 | 702684942141153280 | https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg | 1 | golden_retriever | 0.514085 | True | Chesapeake_Bay_retriever | 1.732240e-01 | True | Brittany_spaniel | 1.183840e-01 | True |
| 929 | 702932127499816960 | https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg | 1 | wallaby | 0.410710 | False | wombat | 2.393320e-01 | False | beaver | 1.496050e-01 | False |
| 930 | 703041949650034688 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 931 | 703079050210877440 | https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg | 2 | Pembroke | 0.778503 | True | Shetland_sheepdog | 9.383390e-02 | True | Cardigan | 6.029640e-02 | True |
| 932 | 703268521220972544 | https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg | 1 | wool | 0.525434 | False | fur_coat | 2.363910e-01 | False | kuvasz | 3.824300e-02 | True |
| 933 | 703356393781329922 | https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg | 1 | Border_collie | 0.894842 | True | collie | 9.736370e-02 | True | English_springer | 3.036740e-03 | True |
| 934 | 703382836347330562 | https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg | 2 | golden_retriever | 0.945664 | True | standard_poodle | 1.439200e-02 | True | Tibetan_mastiff | 1.202170e-02 | True |
| 935 | 703407252292673536 | https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg | 1 | doormat | 0.201058 | False | turnstile | 8.858320e-02 | False | carton | 8.292380e-02 | False |
| 936 | 703425003149250560 | https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg | 1 | miniature_pinscher | 0.292866 | True | sleeping_bag | 1.421220e-01 | False | Italian_greyhound | 7.084900e-02 | True |
| 937 | 703611486317502464 | https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg | 1 | Pembroke | 0.756441 | True | basenji | 1.266210e-01 | True | Cardigan | 8.011670e-02 | True |
| 938 | 703631701117943808 | https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg | 2 | window_shade | 0.909533 | False | window_screen | 1.142660e-02 | False | brass | 8.882100e-03 | False |
| 939 | 703769065844768768 | https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg | 2 | boxer | 0.838994 | True | Greater_Swiss_Mountain_dog | 8.880030e-02 | True | bull_mastiff | 3.168390e-02 | True |
| 940 | 703774238772166656 | https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg | 1 | Labrador_retriever | 0.990119 | True | Chesapeake_Bay_retriever | 8.025580e-03 | True | curly-coated_retriever | 1.242290e-03 | True |
| 941 | 704054845121142784 | https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg | 1 | Great_Pyrenees | 0.667939 | True | kuvasz | 2.287640e-01 | True | golden_retriever | 4.388540e-02 | True |
| 942 | 704113298707505153 | https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg | 2 | otter | 0.945537 | False | mink | 1.823110e-02 | False | sea_lion | 1.586080e-02 | False |
| 943 | 704347321748819968 | https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg | 1 | teddy | 0.233378 | False | feather_boa | 8.847440e-02 | False | Brittany_spaniel | 8.291730e-02 | True |
| 944 | 704364645503647744 | https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg | 1 | Pembroke | 0.980695 | True | Cardigan | 1.850440e-02 | True | Chihuahua | 2.152930e-04 | True |
| 945 | 704480331685040129 | https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg | 1 | Samoyed | 0.979206 | True | Pomeranian | 7.185400e-03 | True | Arctic_fox | 6.438090e-03 | False |
| 946 | 704499785726889984 | https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg | 1 | Chihuahua | 0.376541 | True | Siamese_cat | 9.805710e-02 | False | Labrador_retriever | 8.521090e-02 | True |
| 947 | 704761120771465216 | https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg | 1 | Siamese_cat | 0.202294 | False | Chihuahua | 1.004180e-01 | True | basenji | 7.209650e-02 | True |
| 948 | 704819833553219584 | https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg | 1 | guinea_pig | 0.994776 | False | hamster | 4.068790e-03 | False | wood_rabbit | 2.058690e-04 | False |
| 949 | 704847917308362754 | https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg | 1 | golden_retriever | 0.857240 | True | Labrador_retriever | 1.354600e-01 | True | Tibetan_mastiff | 1.903320e-03 | True |
| 950 | 704859558691414016 | https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg | 1 | pug | 0.284428 | True | teddy | 1.563390e-01 | False | mitten | 1.389150e-01 | False |
| 951 | 704871453724954624 | https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg | 1 | Norfolk_terrier | 0.689504 | True | soft-coated_wheaten_terrier | 1.014800e-01 | True | Norwich_terrier | 5.577850e-02 | True |
| 952 | 705066031337840642 | https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg | 1 | Airedale | 0.868658 | True | Irish_terrier | 2.758710e-02 | True | otterhound | 2.532360e-02 | True |
| 953 | 705102439679201280 | https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg | 1 | collie | 0.457672 | True | chow | 2.791010e-01 | True | Pomeranian | 7.692230e-02 | True |
| 954 | 705223444686888960 | https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg | 1 | Egyptian_cat | 0.090508 | False | Chesapeake_Bay_retriever | 7.737330e-02 | True | Mexican_hairless | 4.947150e-02 | True |
| 955 | 705239209544720384 | https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg | 1 | Chihuahua | 0.157950 | True | toy_terrier | 8.992030e-02 | True | Mexican_hairless | 6.322450e-02 | True |
| 956 | 705428427625635840 | https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg | 1 | Chihuahua | 0.774792 | True | quilt | 7.307940e-02 | False | Pembroke | 2.236510e-02 | True |
| 957 | 705442520700944385 | https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg | 1 | Great_Pyrenees | 0.309106 | True | kuvasz | 2.245560e-01 | True | seat_belt | 2.021000e-01 | False |
| 958 | 705475953783398401 | https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg | 1 | golden_retriever | 0.908784 | True | Labrador_retriever | 3.036120e-02 | True | tennis_ball | 4.995620e-03 | False |
| 959 | 705591895322394625 | https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg | 1 | basenji | 0.877207 | True | Italian_greyhound | 4.785420e-02 | True | miniature_pinscher | 3.563810e-02 | True |
| 960 | 705786532653883392 | https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg | 1 | web_site | 0.550294 | False | Labrador_retriever | 1.484960e-01 | True | golden_retriever | 1.484820e-01 | True |
| 961 | 705898680587526145 | https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg | 1 | collie | 0.808276 | True | Border_collie | 5.943700e-02 | True | groenendael | 2.672030e-02 | True |
| 962 | 705970349788291072 | https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg | 1 | golden_retriever | 0.776346 | True | Labrador_retriever | 1.124130e-01 | True | chow | 3.695290e-02 | True |
| 963 | 705975130514706432 | https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg | 1 | Staffordshire_bullterrier | 0.587764 | True | American_Staffordshire_terrier | 2.814290e-01 | True | bull_mastiff | 9.479810e-02 | True |
| 964 | 706166467411222528 | https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg | 1 | Samoyed | 0.430418 | True | kuvasz | 2.796000e-01 | True | Great_Pyrenees | 1.174800e-01 | True |
| 965 | 706265994973601792 | https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg | 1 | papillon | 0.743715 | True | Pekinese | 1.140420e-01 | True | Saint_Bernard | 4.771520e-02 | True |
| 966 | 706291001778950144 | https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg | 1 | Border_terrier | 0.587101 | True | bull_mastiff | 1.640870e-01 | True | Staffordshire_bullterrier | 1.050110e-01 | True |
| 967 | 706310011488698368 | https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg | 1 | Pembroke | 0.698165 | True | Chihuahua | 1.058340e-01 | True | bloodhound | 6.203040e-02 | True |
| 968 | 706346369204748288 | https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg | 1 | Tibetan_mastiff | 0.956462 | True | Rottweiler | 2.538090e-02 | True | Appenzeller | 8.679210e-03 | True |
| 969 | 706516534877929472 | https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg | 1 | golden_retriever | 0.772685 | True | Labrador_retriever | 7.166530e-02 | True | golfcart | 2.099310e-02 | False |
| 970 | 706538006853918722 | https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg | 1 | chow | 0.541794 | True | Pembroke | 9.491840e-02 | True | Pomeranian | 8.543940e-02 | True |
| 971 | 706593038911545345 | https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg | 1 | four-poster | 0.696423 | False | quilt | 1.893120e-01 | False | pillow | 2.940880e-02 | False |
| 972 | 706644897839910912 | https://pbs.twimg.com/ext_tw_video_thumb/70664... | 1 | space_heater | 0.137871 | False | Chihuahua | 1.329280e-01 | True | cougar | 1.138660e-01 | False |
| 973 | 706681918348251136 | https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg | 1 | toy_poodle | 0.717584 | True | miniature_poodle | 1.514330e-01 | True | Norwich_terrier | 4.708700e-02 | True |
| 974 | 706901761596989440 | https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg | 1 | wild_boar | 0.859499 | False | hog | 1.289810e-01 | False | warthog | 1.131780e-02 | False |
| 975 | 707014260413456384 | https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg | 1 | Chihuahua | 0.583780 | True | Italian_greyhound | 1.296830e-01 | True | toy_terrier | 8.915270e-02 | True |
| 976 | 707021089608753152 | https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg | 2 | cocker_spaniel | 0.559658 | True | golden_retriever | 3.146730e-01 | True | Pekinese | 6.667170e-02 | True |
| 977 | 707038192327901184 | https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg | 1 | pug | 0.642426 | True | llama | 5.730620e-02 | False | French_bulldog | 5.418650e-02 | True |
| 978 | 707059547140169728 | https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg | 1 | Samoyed | 0.897312 | True | Great_Pyrenees | 3.918020e-02 | True | kuvasz | 1.951600e-02 | True |
| 979 | 707297311098011648 | https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg | 1 | Blenheim_spaniel | 0.370717 | True | Shih-Tzu | 2.015660e-01 | True | black-footed_ferret | 1.015590e-01 | False |
| 980 | 707315916783140866 | https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg | 2 | Bernese_mountain_dog | 0.979235 | True | Shetland_sheepdog | 1.103680e-02 | True | Appenzeller | 3.971110e-03 | True |
| 981 | 707377100785885184 | https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg | 1 | golden_retriever | 0.637225 | True | bloodhound | 9.454210e-02 | True | cocker_spaniel | 6.979710e-02 | True |
| 982 | 707387676719185920 | https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg | 1 | Chihuahua | 0.888468 | True | Italian_greyhound | 8.863460e-02 | True | toy_terrier | 1.593830e-02 | True |
| 983 | 707411934438625280 | https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg | 1 | Lakeland_terrier | 0.738277 | True | Airedale | 2.851490e-02 | True | giant_schnauzer | 2.487630e-02 | True |
| 984 | 707420581654872064 | https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg | 1 | ram | 0.518215 | False | kuvasz | 1.493910e-01 | True | Great_Pyrenees | 1.060030e-01 | True |
| 985 | 707610948723478529 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 986 | 707693576495472641 | https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg | 1 | bathtub | 0.499525 | False | tub | 4.880140e-01 | False | washbasin | 9.298250e-03 | False |
| 987 | 707741517457260545 | https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg | 1 | whippet | 0.738371 | True | Italian_greyhound | 1.917890e-01 | True | American_Staffordshire_terrier | 2.012570e-02 | True |
| 988 | 707776935007539200 | https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg | 1 | miniature_pinscher | 0.890426 | True | toy_terrier | 5.133470e-02 | True | Chihuahua | 1.801530e-02 | True |
| 989 | 707969809498152960 | https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg | 1 | toy_poodle | 0.908491 | True | miniature_poodle | 8.265160e-02 | True | teddy | 5.786130e-03 | False |
| 990 | 707995814724026368 | https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg | 1 | agama | 0.172087 | False | Gila_monster | 1.269780e-01 | False | lumbermill | 5.040000e-02 | False |
| 991 | 708026248782585858 | https://pbs.twimg.com/ext_tw_video_thumb/70802... | 1 | malinois | 0.786468 | True | Chesapeake_Bay_retriever | 6.897890e-02 | True | Siamese_cat | 2.930440e-02 | False |
| 992 | 708109389455101952 | https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg | 1 | Staffordshire_bullterrier | 0.516106 | True | American_Staffordshire_terrier | 2.360750e-01 | True | kelpie | 6.974950e-02 | True |
| 993 | 708119489313951744 | https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg | 1 | Norwich_terrier | 0.264483 | True | Norfolk_terrier | 2.587860e-01 | True | chow | 9.689870e-02 | True |
| 994 | 708130923141795840 | https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg | 1 | French_bulldog | 0.710354 | True | Chihuahua | 2.623020e-01 | True | Cardigan | 6.903820e-03 | True |
| 995 | 708149363256774660 | https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg | 1 | Cardigan | 0.350993 | True | basset | 1.645550e-01 | True | toy_terrier | 8.048360e-02 | True |
| 996 | 708349470027751425 | https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg | 1 | muzzle | 0.243890 | False | basenji | 1.871580e-01 | True | Boston_bull | 9.272700e-02 | True |
| 997 | 708356463048204288 | https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg | 2 | pug | 0.871283 | True | French_bulldog | 4.182000e-02 | True | bath_towel | 1.522800e-02 | False |
| 998 | 708469915515297792 | https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg | 1 | Chihuahua | 0.748163 | True | toy_terrier | 1.277170e-01 | True | Pembroke | 4.214100e-02 | True |
| 999 | 708479650088034305 | https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg | 1 | Shih-Tzu | 0.218479 | True | Lhasa | 2.019660e-01 | True | Norfolk_terrier | 1.652250e-01 | True |
| 1000 | 708711088997666817 | https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg | 2 | tennis_ball | 0.912961 | False | German_short-haired_pointer | 5.269460e-02 | True | Labrador_retriever | 1.847740e-02 | True |
| 1001 | 708738143638450176 | https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg | 1 | Pomeranian | 0.933457 | True | Samoyed | 5.722080e-02 | True | West_Highland_white_terrier | 9.041510e-04 | True |
| 1002 | 708810915978854401 | https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg | 2 | golden_retriever | 0.976139 | True | Labrador_retriever | 1.630090e-02 | True | Norfolk_terrier | 1.871370e-03 | True |
| 1003 | 708834316713893888 | https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg | 1 | Eskimo_dog | 0.283945 | True | giant_panda | 2.182520e-01 | False | malamute | 1.804010e-01 | True |
| 1004 | 708845821941387268 | https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg | 1 | schipperke | 0.745640 | True | kelpie | 1.678530e-01 | True | Boston_bull | 1.476290e-02 | True |
| 1005 | 709042156699303936 | https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg | 1 | hotdog | 0.826579 | False | Rottweiler | 6.817930e-02 | True | Labrador_retriever | 4.921790e-02 | True |
| 1006 | 709158332880297985 | https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg | 1 | Siberian_husky | 0.212957 | True | Eskimo_dog | 1.788870e-01 | True | Labrador_retriever | 1.742180e-01 | True |
| 1007 | 709198395643068416 | https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg | 1 | borzoi | 0.490783 | True | wire-haired_fox_terrier | 8.351330e-02 | True | English_setter | 8.318430e-02 | True |
| 1008 | 709207347839836162 | https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg | 1 | Chihuahua | 0.948323 | True | Italian_greyhound | 1.773030e-02 | True | quilt | 1.668790e-02 | False |
| 1009 | 709225125749587968 | https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg | 1 | Labrador_retriever | 0.271109 | True | Pomeranian | 1.504870e-01 | True | golden_retriever | 1.455780e-01 | True |
| 1010 | 709409458133323776 | https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg | 1 | Shetland_sheepdog | 0.797450 | True | collie | 5.405530e-02 | True | keeshond | 3.167330e-02 | True |
| 1011 | 709449600415961088 | https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg | 2 | Maltese_dog | 0.780187 | True | Dandie_Dinmont | 7.442870e-02 | True | Norfolk_terrier | 3.377620e-02 | True |
| 1012 | 709519240576036864 | https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg | 1 | cocker_spaniel | 0.414982 | True | Newfoundland | 2.254820e-01 | True | flat-coated_retriever | 1.967890e-01 | True |
| 1013 | 709556954897764353 | https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg | 2 | golden_retriever | 0.790026 | True | kuvasz | 1.050310e-01 | True | Labrador_retriever | 8.705120e-02 | True |
| 1014 | 709566166965075968 | https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg | 1 | chow | 0.999837 | True | Tibetan_mastiff | 1.169070e-04 | True | Australian_terrier | 1.133840e-05 | True |
| 1015 | 709852847387627521 | https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg | 2 | Chihuahua | 0.945629 | True | Pomeranian | 1.920360e-02 | True | West_Highland_white_terrier | 1.013420e-02 | True |
| 1016 | 709901256215666688 | https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg | 2 | bib | 0.998814 | False | handkerchief | 5.117730e-04 | False | umbrella | 2.244770e-04 | False |
| 1017 | 709918798883774466 | https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg | 2 | Pembroke | 0.956222 | True | Cardigan | 2.072730e-02 | True | Chihuahua | 7.912180e-03 | True |
| 1018 | 710117014656950272 | https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg | 2 | toy_poodle | 0.802092 | True | miniature_poodle | 1.116470e-01 | True | cocker_spaniel | 6.286620e-02 | True |
| 1019 | 710140971284037632 | https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg | 1 | Pekinese | 0.953170 | True | papillon | 1.951690e-02 | True | Japanese_spaniel | 5.820510e-03 | True |
| 1020 | 710153181850935296 | https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg | 2 | cowboy_hat | 0.979053 | False | sombrero | 1.068250e-02 | False | cocker_spaniel | 2.712960e-03 | True |
| 1021 | 710269109699739648 | https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg | 1 | pug | 0.415495 | True | German_shepherd | 1.781570e-01 | True | Labrador_retriever | 1.002020e-01 | True |
| 1022 | 710272297844797440 | https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg | 1 | Old_English_sheepdog | 0.586307 | True | wire-haired_fox_terrier | 1.186220e-01 | True | Lakeland_terrier | 1.068060e-01 | True |
| 1023 | 710283270106132480 | https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg | 2 | Shih-Tzu | 0.932401 | True | Lhasa | 3.080570e-02 | True | Tibetan_terrier | 8.974280e-03 | True |
| 1024 | 710588934686908417 | https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg | 4 | Pembroke | 0.982004 | True | Cardigan | 8.943470e-03 | True | malamute | 7.549900e-03 | True |
| 1025 | 710658690886586372 | https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg | 1 | soft-coated_wheaten_terrier | 0.948617 | True | Dandie_Dinmont | 1.866440e-02 | True | cairn | 1.594270e-02 | True |
| 1026 | 710833117892898816 | https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg | 1 | Pembroke | 0.803742 | True | Cardigan | 1.897120e-01 | True | German_shepherd | 1.746090e-03 | True |
| 1027 | 710844581445812225 | https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg | 1 | dingo | 0.536593 | False | Pembroke | 2.004070e-01 | True | basenji | 6.073450e-02 | True |
| 1028 | 710997087345876993 | https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg | 1 | malamute | 0.281260 | True | Eskimo_dog | 2.326410e-01 | True | Pembroke | 9.160200e-02 | True |
| 1029 | 711008018775851008 | https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg | 1 | French_bulldog | 0.731405 | True | Boston_bull | 1.506720e-01 | True | pug | 2.181090e-02 | True |
| 1030 | 711306686208872448 | https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg | 1 | leatherback_turtle | 0.280835 | False | loggerhead | 1.232900e-01 | False | Dandie_Dinmont | 8.679250e-02 | True |
| 1031 | 711363825979756544 | https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg | 1 | Pembroke | 0.750906 | True | Cardigan | 2.411520e-01 | True | basenji | 2.639620e-03 | True |
| 1032 | 711652651650457602 | https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg | 1 | llama | 0.856789 | False | Arabian_camel | 9.872700e-02 | False | neck_brace | 1.637720e-02 | False |
| 1033 | 711694788429553666 | https://pbs.twimg.com/tweet_video_thumb/CeBym7... | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1034 | 711732680602345472 | https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg | 3 | dingo | 0.366875 | False | Ibizan_hound | 3.349290e-01 | True | Eskimo_dog | 7.387620e-02 | True |
| 1035 | 711743778164514816 | https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg | 1 | Lakeland_terrier | 0.459515 | True | miniature_poodle | 2.196610e-01 | True | standard_poodle | 1.301890e-01 | True |
| 1036 | 711968124745228288 | https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg | 1 | espresso | 0.430135 | False | coffee_mug | 4.184830e-01 | False | cup | 8.839120e-02 | False |
| 1037 | 711998809858043904 | https://pbs.twimg.com/tweet_video_thumb/CeGGkW... | 1 | comic_book | 0.105171 | False | kuvasz | 5.989510e-02 | True | book_jacket | 4.663810e-02 | False |
| 1038 | 712065007010385924 | https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg | 1 | goose | 0.214301 | False | gibbon | 8.425300e-02 | False | pizza | 8.016830e-02 | False |
| 1039 | 712085617388212225 | https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg | 2 | Shih-Tzu | 0.625129 | True | Tibetan_terrier | 1.268970e-01 | True | Lhasa | 1.196630e-01 | True |
| 1040 | 712092745624633345 | https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg | 1 | triceratops | 0.235373 | False | llama | 1.531260e-01 | False | three-toed_sloth | 1.118400e-01 | False |
| 1041 | 712097430750289920 | https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg | 1 | Labrador_retriever | 0.720481 | True | whippet | 4.803180e-02 | True | Chesapeake_Bay_retriever | 4.504640e-02 | True |
| 1042 | 712438159032893441 | https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg | 1 | ice_bear | 0.869477 | False | Great_Pyrenees | 6.945700e-02 | True | Labrador_retriever | 2.474000e-02 | True |
| 1043 | 712668654853337088 | https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg | 1 | Labrador_retriever | 0.829058 | True | golden_retriever | 3.866450e-02 | True | Chihuahua | 2.622140e-02 | True |
| 1044 | 712717840512598017 | https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg | 1 | Great_Pyrenees | 0.732043 | True | kuvasz | 1.213750e-01 | True | Irish_wolfhound | 4.952370e-02 | True |
| 1045 | 712809025985978368 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1046 | 713175907180089344 | https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg | 1 | timber_wolf | 0.503788 | False | malamute | 4.306240e-01 | True | Siberian_husky | 2.845420e-02 | True |
| 1047 | 713177543487135744 | https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg | 1 | whippet | 0.734244 | True | basenji | 2.594800e-02 | True | Great_Dane | 2.587430e-02 | True |
| 1048 | 713411074226274305 | https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg | 1 | Great_Pyrenees | 0.720337 | True | Samoyed | 1.295420e-01 | True | kuvasz | 1.224510e-01 | True |
| 1049 | 713761197720473600 | https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg | 1 | Brittany_spaniel | 0.797936 | True | English_springer | 4.471820e-02 | True | Welsh_springer_spaniel | 3.791070e-02 | True |
| 1050 | 713900603437621249 | https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg | 1 | golden_retriever | 0.371816 | True | cocker_spaniel | 1.774130e-01 | True | Irish_setter | 9.272520e-02 | True |
| 1051 | 713919462244790272 | https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg | 1 | Siberian_husky | 0.463223 | True | Eskimo_dog | 3.899590e-01 | True | malamute | 9.796270e-02 | True |
| 1052 | 714141408463036416 | https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg | 1 | Labrador_retriever | 0.586951 | True | golden_retriever | 3.788120e-01 | True | redbone | 3.604890e-03 | True |
| 1053 | 714214115368108032 | https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg | 1 | pug | 0.533967 | True | bloodhound | 1.648260e-01 | True | German_shepherd | 4.652400e-02 | True |
| 1054 | 714251586676113411 | https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg | 2 | soft-coated_wheaten_terrier | 0.751962 | True | Bedlington_terrier | 1.756520e-01 | True | Great_Pyrenees | 1.145240e-02 | True |
| 1055 | 714258258790387713 | https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg | 1 | collie | 0.176758 | True | Chesapeake_Bay_retriever | 1.018340e-01 | True | beagle | 1.012940e-01 | True |
| 1056 | 714606013974974464 | https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg | 1 | Norfolk_terrier | 0.293007 | True | Labrador_retriever | 2.561980e-01 | True | golden_retriever | 1.296430e-01 | True |
| 1057 | 714631576617938945 | https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg | 1 | meerkat | 0.143497 | False | weasel | 1.174020e-01 | False | black-footed_ferret | 9.993270e-02 | False |
| 1058 | 714957620017307648 | https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg | 1 | Great_Pyrenees | 0.251516 | True | Samoyed | 1.393460e-01 | True | kuvasz | 1.290050e-01 | True |
| 1059 | 714982300363173890 | https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg | 1 | Brittany_spaniel | 0.944376 | True | beagle | 2.543530e-02 | True | Ibizan_hound | 9.962040e-03 | True |
| 1060 | 715009755312439296 | https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg | 1 | dingo | 0.310903 | False | Chihuahua | 1.422880e-01 | True | Cardigan | 1.039450e-01 | True |
| 1061 | 715200624753819648 | https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg | 1 | Chihuahua | 0.956787 | True | beagle | 8.382870e-03 | True | Labrador_retriever | 8.344090e-03 | True |
| 1062 | 715220193576927233 | https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg | 1 | Chihuahua | 0.584026 | True | Italian_greyhound | 3.770770e-01 | True | Boston_bull | 1.740040e-02 | True |
| 1063 | 715342466308784130 | https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg | 1 | West_Highland_white_terrier | 0.597111 | True | soft-coated_wheaten_terrier | 1.429930e-01 | True | Lakeland_terrier | 1.367120e-01 | True |
| 1064 | 715360349751484417 | https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg | 1 | nail | 0.855552 | False | screw | 7.327730e-02 | False | padlock | 2.397040e-02 | False |
| 1065 | 715680795826982913 | https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg | 1 | golden_retriever | 0.990715 | True | Labrador_retriever | 2.228340e-03 | True | chow | 1.197150e-03 | True |
| 1066 | 715696743237730304 | https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg | 1 | Staffordshire_bullterrier | 0.427836 | True | pug | 2.214090e-01 | True | French_bulldog | 1.321350e-01 | True |
| 1067 | 715733265223708672 | https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg | 1 | Dandie_Dinmont | 0.740229 | True | miniature_poodle | 8.191510e-02 | True | toy_poodle | 6.374850e-02 | True |
| 1068 | 715928423106027520 | https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg | 1 | pug | 0.976685 | True | French_bulldog | 1.966260e-02 | True | bull_mastiff | 2.278190e-03 | True |
| 1069 | 716080869887381504 | https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg | 1 | golden_retriever | 0.638625 | True | chow | 2.547170e-01 | True | Tibetan_mastiff | 7.173170e-02 | True |
| 1070 | 716285507865542656 | https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg | 1 | Yorkshire_terrier | 0.430420 | True | silky_terrier | 1.967690e-01 | True | cairn | 7.267610e-02 | True |
| 1071 | 716439118184652801 | https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg | 1 | Siberian_husky | 0.396495 | True | malamute | 3.170530e-01 | True | Eskimo_dog | 2.734190e-01 | True |
| 1072 | 716791146589110272 | https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg | 1 | Pomeranian | 0.468751 | True | seat_belt | 1.546520e-01 | False | golden_retriever | 1.250170e-01 | True |
| 1073 | 716802964044845056 | https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg | 2 | malinois | 0.619577 | True | Leonberg | 1.180890e-01 | True | bull_mastiff | 6.650780e-02 | True |
| 1074 | 717009362452090881 | https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg | 1 | Siberian_husky | 0.506154 | True | Eskimo_dog | 2.696560e-01 | True | malamute | 6.065850e-02 | True |
| 1075 | 717047459982213120 | https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg | 1 | golden_retriever | 0.983548 | True | Labrador_retriever | 1.218540e-02 | True | cocker_spaniel | 2.412030e-03 | True |
| 1076 | 717421804990701568 | https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg | 2 | miniature_pinscher | 0.286479 | True | Italian_greyhound | 8.413390e-02 | True | beagle | 6.469700e-02 | True |
| 1077 | 717537687239008257 | https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg | 1 | golden_retriever | 0.779356 | True | Labrador_retriever | 5.251140e-02 | True | kuvasz | 4.981050e-02 | True |
| 1078 | 717790033953034240 | https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg | 1 | car_mirror | 0.819106 | False | minibus | 1.073830e-01 | False | cab | 3.484640e-02 | False |
| 1079 | 717841801130979328 | https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg | 1 | Brittany_spaniel | 0.922876 | True | English_springer | 7.011350e-02 | True | bath_towel | 2.560790e-03 | False |
| 1080 | 718234618122661888 | https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg | 1 | malamute | 0.370152 | True | Siberian_husky | 3.563980e-01 | True | Eskimo_dog | 2.710420e-01 | True |
| 1081 | 718246886998687744 | https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg | 1 | Chihuahua | 0.354488 | True | carton | 1.596720e-01 | False | Siberian_husky | 5.749830e-02 | True |
| 1082 | 718454725339934721 | https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg | 1 | hammer | 0.169865 | False | hatchet | 1.157440e-01 | False | chime | 6.809160e-02 | False |
| 1083 | 718460005985447936 | https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg | 1 | badger | 0.356946 | False | Boston_bull | 2.527810e-01 | True | kelpie | 1.134330e-01 | True |
| 1084 | 718540630683709445 | https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg | 2 | Maltese_dog | 0.632289 | True | West_Highland_white_terrier | 1.870550e-01 | True | cairn | 4.441290e-02 | True |
| 1085 | 718613305783398402 | https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg | 1 | Labrador_retriever | 0.584580 | True | German_short-haired_pointer | 3.406570e-01 | True | Chesapeake_Bay_retriever | 3.197510e-02 | True |
| 1086 | 718631497683582976 | https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg | 1 | Pomeranian | 0.993718 | True | Pekinese | 3.610830e-03 | True | Persian_cat | 5.248230e-04 | False |
| 1087 | 718939241951195136 | https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg | 1 | Pembroke | 0.766327 | True | Cardigan | 2.221260e-01 | True | toilet_tissue | 6.757230e-03 | False |
| 1088 | 718971898235854848 | https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg | 1 | golden_retriever | 0.140394 | True | Saint_Bernard | 1.187690e-01 | True | Labrador_retriever | 7.549170e-02 | True |
| 1089 | 719332531645071360 | https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg | 1 | Dandie_Dinmont | 0.224415 | True | miniature_poodle | 2.048820e-01 | True | Norfolk_terrier | 9.063290e-02 | True |
| 1090 | 719339463458033665 | https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg | 1 | golden_retriever | 0.765778 | True | borzoi | 7.114810e-02 | True | Leonberg | 7.037050e-02 | True |
| 1091 | 719367763014393856 | https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg | 1 | swing | 0.171486 | False | soft-coated_wheaten_terrier | 5.097100e-02 | True | Tibetan_terrier | 4.775940e-02 | True |
| 1092 | 719551379208073216 | https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg | 1 | malamute | 0.873233 | True | Siberian_husky | 7.643540e-02 | True | Eskimo_dog | 3.574500e-02 | True |
| 1093 | 719704490224398336 | https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg | 1 | home_theater | 0.059033 | False | window_shade | 3.829900e-02 | False | bathtub | 3.552820e-02 | False |
| 1094 | 719991154352222208 | https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg | 2 | golden_retriever | 0.605304 | True | cocker_spaniel | 1.309480e-01 | True | Labrador_retriever | 9.469160e-02 | True |
| 1095 | 720043174954147842 | https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg | 1 | Samoyed | 0.954517 | True | Eskimo_dog | 2.912960e-02 | True | white_wolf | 4.462030e-03 | False |
| 1096 | 720059472081784833 | https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg | 1 | Mexican_hairless | 0.451852 | True | redbone | 2.548840e-01 | True | Italian_greyhound | 9.481810e-02 | True |
| 1097 | 720340705894408192 | https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg | 1 | alp | 0.320126 | False | lawn_mower | 8.080770e-02 | False | viaduct | 6.532100e-02 | False |
| 1098 | 720389942216527872 | https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg | 1 | Pembroke | 0.873977 | True | Cardigan | 4.333850e-02 | True | Eskimo_dog | 1.919710e-02 | True |
| 1099 | 720415127506415616 | https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg | 1 | Rottweiler | 0.990312 | True | black-and-tan_coonhound | 2.494780e-03 | True | American_black_bear | 1.733120e-03 | False |
| 1100 | 720775346191278080 | https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg | 1 | Newfoundland | 0.489970 | True | groenendael | 1.744970e-01 | True | giant_schnauzer | 7.906670e-02 | True |
| 1101 | 720785406564900865 | https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg | 1 | Chihuahua | 0.896422 | True | dingo | 2.792940e-02 | False | kelpie | 1.791580e-02 | True |
| 1102 | 721001180231503872 | https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg | 1 | Samoyed | 0.950053 | True | washbasin | 6.321390e-03 | False | tub | 6.243350e-03 | False |
| 1103 | 721503162398597120 | https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg | 3 | Pomeranian | 0.997750 | True | Chihuahua | 1.248000e-03 | True | Pekinese | 7.750020e-04 | True |
| 1104 | 722613351520608256 | https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg | 1 | Labrador_retriever | 0.530915 | True | golden_retriever | 2.882300e-01 | True | chow | 4.485370e-02 | True |
| 1105 | 722974582966214656 | https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg | 1 | Great_Dane | 0.246762 | True | Greater_Swiss_Mountain_dog | 1.261310e-01 | True | Weimaraner | 8.529690e-02 | True |
| 1106 | 723179728551723008 | https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg | 1 | tennis_ball | 0.176495 | False | badger | 5.990520e-02 | False | Norwegian_elkhound | 5.685050e-02 | True |
| 1107 | 723673163800948736 | https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg | 1 | golden_retriever | 0.839390 | True | Labrador_retriever | 6.570580e-02 | True | hand_blower | 1.294100e-02 | False |
| 1108 | 723688335806480385 | https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg | 2 | teddy | 0.263256 | False | chow | 8.901020e-02 | True | Irish_terrier | 6.530570e-02 | True |
| 1109 | 723912936180330496 | https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg | 1 | Samoyed | 0.991772 | True | Pomeranian | 3.626380e-03 | True | chow | 2.231830e-03 | True |
| 1110 | 724004602748780546 | https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg | 3 | Siamese_cat | 0.950526 | False | pug | 1.887690e-02 | True | quilt | 7.627600e-03 | False |
| 1111 | 724046343203856385 | https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg | 1 | boxer | 0.826272 | True | bull_mastiff | 1.585950e-01 | True | Great_Dane | 1.185860e-02 | True |
| 1112 | 724049859469295616 | https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg | 1 | Border_collie | 0.581835 | True | collie | 3.445880e-01 | True | Shetland_sheepdog | 4.358420e-02 | True |
| 1113 | 724405726123311104 | https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg | 1 | golden_retriever | 0.240695 | True | cocker_spaniel | 2.024440e-01 | True | feather_boa | 1.593480e-01 | False |
| 1114 | 724771698126512129 | https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg | 2 | German_short-haired_pointer | 0.835491 | True | bluetick | 5.878800e-02 | True | English_setter | 3.720830e-02 | True |
| 1115 | 724983749226668032 | https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg | 1 | golden_retriever | 0.675750 | True | Great_Pyrenees | 9.516790e-02 | True | cocker_spaniel | 7.604290e-02 | True |
| 1116 | 725729321944506368 | https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg | 1 | boxer | 0.599076 | True | bull_mastiff | 1.773180e-01 | True | French_bulldog | 1.414610e-01 | True |
| 1117 | 725786712245440512 | https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg | 1 | chow | 0.335761 | True | Samoyed | 1.671730e-01 | True | kuvasz | 1.457150e-01 | True |
| 1118 | 725842289046749185 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1119 | 726224900189511680 | https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg | 1 | standard_poodle | 0.261112 | True | cocker_spaniel | 9.478520e-02 | True | bucket | 6.994640e-02 | False |
| 1120 | 726828223124897792 | https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg | 1 | miniature_pinscher | 0.255327 | True | Border_terrier | 1.812790e-01 | True | Labrador_retriever | 1.251850e-01 | True |
| 1121 | 726887082820554753 | https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg | 1 | soft-coated_wheaten_terrier | 0.515919 | True | Irish_terrier | 1.626550e-01 | True | Chesapeake_Bay_retriever | 1.251820e-01 | True |
| 1122 | 726935089318363137 | https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg | 2 | teddy | 0.821615 | False | toy_poodle | 8.374900e-02 | True | Lakeland_terrier | 3.331800e-02 | True |
| 1123 | 727175381690781696 | https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg | 2 | flat-coated_retriever | 0.656463 | True | Great_Dane | 8.476580e-02 | True | Labrador_retriever | 5.890850e-02 | True |
| 1124 | 727286334147182592 | https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg | 1 | bonnet | 0.146440 | False | sock | 8.309100e-02 | False | Chihuahua | 7.055420e-02 | True |
| 1125 | 727314416056803329 | https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg | 2 | toy_poodle | 0.827469 | True | miniature_poodle | 1.607600e-01 | True | Tibetan_terrier | 1.730750e-03 | True |
| 1126 | 727524757080539137 | https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg | 2 | Pomeranian | 0.958834 | True | Chihuahua | 2.409920e-02 | True | chow | 3.941050e-03 | True |
| 1127 | 727644517743104000 | https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg | 2 | Great_Pyrenees | 0.457164 | True | kuvasz | 3.917100e-01 | True | Labrador_retriever | 9.452260e-02 | True |
| 1128 | 727685679342333952 | https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg | 1 | Border_collie | 0.462408 | True | collie | 2.145560e-01 | True | Eskimo_dog | 3.560360e-02 | True |
| 1129 | 728015554473250816 | https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg | 1 | cocker_spaniel | 0.384559 | True | golden_retriever | 9.166100e-02 | True | sandbar | 8.179890e-02 | False |
| 1130 | 728035342121635841 | https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg | 1 | handkerchief | 0.302961 | False | Pomeranian | 2.486640e-01 | True | Shih-Tzu | 1.110150e-01 | True |
| 1131 | 728046963732717569 | https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg | 1 | Newfoundland | 0.255971 | True | groenendael | 1.755830e-01 | True | German_shepherd | 1.641350e-01 | True |
| 1132 | 728387165835677696 | https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg | 1 | collie | 0.266414 | True | Great_Pyrenees | 1.385460e-01 | True | keeshond | 1.090140e-01 | True |
| 1133 | 728409960103686147 | https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg | 1 | Siamese_cat | 0.478278 | False | Saint_Bernard | 9.424560e-02 | True | king_penguin | 8.215670e-02 | False |
| 1134 | 728653952833728512 | https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg | 2 | window_shade | 0.594333 | False | studio_couch | 5.351500e-02 | False | rotisserie | 4.124780e-02 | False |
| 1135 | 728751179681943552 | https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg | 1 | Saint_Bernard | 0.482050 | True | collie | 2.027400e-01 | True | borzoi | 3.797580e-02 | True |
| 1136 | 728760639972315136 | https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg | 1 | Pembroke | 0.939134 | True | Cardigan | 5.433560e-02 | True | Chihuahua | 5.590290e-03 | True |
| 1137 | 728986383096946689 | https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg | 2 | Maltese_dog | 0.952070 | True | toy_poodle | 2.727060e-02 | True | miniature_poodle | 4.874360e-03 | True |
| 1138 | 729113531270991872 | https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg | 2 | stone_wall | 0.606188 | False | prison | 6.483100e-02 | False | bannister | 4.804820e-02 | False |
| 1139 | 729463711119904772 | https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg | 1 | German_shepherd | 0.829307 | True | Doberman | 2.250000e-02 | True | basenji | 2.119010e-02 | True |
| 1140 | 729823566028484608 | https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg | 1 | kelpie | 0.218408 | True | Arabian_camel | 1.143680e-01 | False | coyote | 9.640930e-02 | False |
| 1141 | 729838605770891264 | https://pbs.twimg.com/ext_tw_video_thumb/72983... | 1 | stone_wall | 0.758218 | False | patio | 7.420540e-02 | False | prison | 1.382600e-02 | False |
| 1142 | 729854734790754305 | https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg | 1 | doormat | 0.359586 | False | china_cabinet | 5.390140e-02 | False | passenger_car | 5.266470e-02 | False |
| 1143 | 730196704625098752 | https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg | 1 | hand_blower | 0.296145 | False | chain_mail | 2.622710e-01 | False | toilet_seat | 1.494970e-01 | False |
| 1144 | 730211855403241472 | https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg | 1 | pug | 0.341663 | True | Norwegian_elkhound | 1.712220e-01 | True | German_shepherd | 1.246870e-01 | True |
| 1145 | 730427201120833536 | https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg | 1 | Eskimo_dog | 0.682082 | True | Siberian_husky | 2.892880e-01 | True | Staffordshire_bullterrier | 8.770690e-03 | True |
| 1146 | 730573383004487680 | https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg | 2 | American_Staffordshire_terrier | 0.810158 | True | Labrador_retriever | 5.820500e-02 | True | Weimaraner | 2.792950e-02 | True |
| 1147 | 730924654643314689 | https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg | 1 | polecat | 0.185382 | False | mink | 1.052820e-01 | False | Newfoundland | 8.624110e-02 | True |
| 1148 | 731156023742988288 | https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg | 1 | lakeside | 0.501767 | False | breakwater | 5.135060e-02 | False | king_penguin | 4.944380e-02 | False |
| 1149 | 731285275100512256 | https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg | 1 | Pembroke | 0.967103 | True | Cardigan | 2.112640e-02 | True | Chihuahua | 2.231070e-03 | True |
| 1150 | 732005617171337216 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1151 | 732375214819057664 | https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg | 1 | tennis_ball | 0.998673 | False | basset | 5.470530e-04 | True | golden_retriever | 3.599800e-04 | True |
| 1152 | 732585889486888962 | https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg | 2 | Staffordshire_bullterrier | 0.843359 | True | American_Staffordshire_terrier | 2.829030e-02 | True | miniature_pinscher | 1.679290e-02 | True |
| 1153 | 732726085725589504 | https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg | 1 | Pomeranian | 0.961902 | True | Samoyed | 2.428930e-02 | True | chow | 5.771780e-03 | True |
| 1154 | 732732193018155009 | https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg | 1 | koala | 0.162935 | False | Staffordshire_bullterrier | 1.279690e-01 | True | mongoose | 9.642100e-02 | False |
| 1155 | 733109485275860992 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1156 | 733460102733135873 | https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg | 1 | chow | 0.931275 | True | beaver | 2.883110e-02 | False | dhole | 1.737900e-02 | False |
| 1157 | 733482008106668032 | https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg | 1 | French_bulldog | 0.619382 | True | computer_keyboard | 1.422740e-01 | False | mouse | 5.850470e-02 | False |
| 1158 | 733822306246479872 | https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg | 1 | Lhasa | 0.457356 | True | Shih-Tzu | 3.712820e-01 | True | Tibetan_terrier | 4.835900e-02 | True |
| 1159 | 733828123016450049 | https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg | 2 | beagle | 0.472324 | True | Walker_hound | 1.217790e-01 | True | Saint_Bernard | 1.146400e-01 | True |
| 1160 | 734776360183431168 | https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg | 1 | Siberian_husky | 0.304902 | True | Eskimo_dog | 1.551470e-01 | True | malamute | 5.094240e-02 | True |
| 1161 | 734787690684657664 | https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg | 4 | golden_retriever | 0.883991 | True | chow | 2.354160e-02 | True | Labrador_retriever | 1.605590e-02 | True |
| 1162 | 734912297295085568 | https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg | 1 | Maltese_dog | 0.847292 | True | feather_boa | 5.937860e-02 | False | Old_English_sheepdog | 5.275800e-02 | True |
| 1163 | 735137028879360001 | https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg | 1 | Walker_hound | 0.413535 | True | beagle | 2.338910e-01 | True | English_foxhound | 1.649430e-01 | True |
| 1164 | 735256018284875776 | https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg | 1 | Staffordshire_bullterrier | 0.523191 | True | French_bulldog | 3.511040e-01 | True | doormat | 2.807530e-02 | False |
| 1165 | 735274964362878976 | https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg | 1 | studio_couch | 0.944692 | False | four-poster | 7.941630e-03 | False | quilt | 6.302060e-03 | False |
| 1166 | 735635087207878657 | https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg | 1 | pug | 0.891871 | True | goose | 1.437660e-02 | False | fur_coat | 8.451430e-03 | False |
| 1167 | 735648611367784448 | https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg | 1 | Pembroke | 0.462594 | True | seat_belt | 2.618540e-01 | False | Cardigan | 1.516980e-01 | True |
| 1168 | 735991953473572864 | https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg | 2 | cocker_spaniel | 0.961643 | True | toy_poodle | 1.154690e-02 | True | soft-coated_wheaten_terrier | 4.903330e-03 | True |
| 1169 | 736010884653420544 | https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg | 2 | golden_retriever | 0.553901 | True | Labrador_retriever | 1.194750e-01 | True | bluetick | 7.747500e-02 | True |
| 1170 | 736225175608430592 | https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg | 1 | Labrador_retriever | 0.399217 | True | West_Highland_white_terrier | 1.377100e-01 | True | cocker_spaniel | 6.203270e-02 | True |
| 1171 | 736365877722001409 | https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg | 3 | cup | 0.473555 | False | toy_poodle | 8.260600e-02 | True | consomme | 4.829800e-02 | False |
| 1172 | 736736130620620800 | https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg | 1 | schipperke | 0.545502 | True | groenendael | 2.986220e-01 | True | Labrador_retriever | 3.098640e-02 | True |
| 1173 | 737310737551491075 | https://pbs.twimg.com/ext_tw_video_thumb/73731... | 1 | cliff | 0.439077 | False | lakeside | 6.289920e-02 | False | valley | 3.975850e-02 | False |
| 1174 | 737322739594330112 | https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg | 1 | guinea_pig | 0.148526 | False | solar_dish | 9.718290e-02 | False | park_bench | 5.931190e-02 | False |
| 1175 | 737445876994609152 | https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg | 1 | Samoyed | 0.400568 | True | Pomeranian | 3.312680e-01 | True | Maltese_dog | 4.542610e-02 | True |
| 1176 | 737678689543020544 | https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg | 1 | Pembroke | 0.935307 | True | Cardigan | 4.987420e-02 | True | Chihuahua | 1.160320e-02 | True |
| 1177 | 737800304142471168 | https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg | 1 | malamute | 0.374682 | True | Norwegian_elkhound | 3.348530e-01 | True | limousine | 6.817320e-02 | False |
| 1178 | 737826014890496000 | https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg | 1 | vizsla | 0.990391 | True | Rhodesian_ridgeback | 5.604740e-03 | True | Chesapeake_Bay_retriever | 2.869360e-03 | True |
| 1179 | 738156290900254721 | https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg | 1 | pug | 0.751758 | True | tub | 1.107480e-01 | False | bathtub | 1.041320e-01 | False |
| 1180 | 738166403467907072 | https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg | 2 | keeshond | 0.878886 | True | Norwegian_elkhound | 8.665940e-02 | True | malamute | 2.128030e-02 | True |
| 1181 | 738184450748633089 | https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg | 1 | Bedlington_terrier | 0.289471 | True | standard_poodle | 1.736850e-01 | True | Great_Pyrenees | 1.570810e-01 | True |
| 1182 | 738402415918125056 | https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg | 1 | cocker_spaniel | 0.346695 | True | Blenheim_spaniel | 1.939050e-01 | True | Chihuahua | 7.800000e-02 | True |
| 1183 | 738537504001953792 | https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg | 1 | chow | 0.808737 | True | gibbon | 2.894240e-02 | False | Pembroke | 2.649790e-02 | True |
| 1184 | 738883359779196928 | https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg | 2 | Labrador_retriever | 0.691137 | True | golden_retriever | 1.955580e-01 | True | Chesapeake_Bay_retriever | 1.958490e-02 | True |
| 1185 | 738885046782832640 | https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg | 1 | bath_towel | 0.878320 | False | swab | 2.063330e-02 | False | American_Staffordshire_terrier | 1.553510e-02 | True |
| 1186 | 739238157791694849 | https://pbs.twimg.com/ext_tw_video_thumb/73923... | 1 | Eskimo_dog | 0.503372 | True | Siberian_husky | 3.904130e-01 | True | malamute | 8.090120e-02 | True |
| 1187 | 739485634323156992 | https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg | 2 | Walker_hound | 0.640256 | True | English_foxhound | 2.297990e-01 | True | beagle | 3.775400e-02 | True |
| 1188 | 739544079319588864 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1189 | 739606147276148736 | https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg | 3 | Blenheim_spaniel | 0.933755 | True | cocker_spaniel | 4.171940e-02 | True | Brittany_spaniel | 6.712560e-03 | True |
| 1190 | 739844404073074688 | https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg | 1 | toy_poodle | 0.342397 | True | table_lamp | 1.044510e-01 | False | miniature_poodle | 7.987100e-02 | True |
| 1191 | 739932936087216128 | https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg | 1 | redbone | 0.243904 | True | beagle | 2.109750e-01 | True | vizsla | 7.644300e-02 | True |
| 1192 | 739979191639244800 | https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg | 1 | Irish_water_spaniel | 0.285800 | True | wig | 2.406530e-01 | False | toy_poodle | 7.491390e-02 | True |
| 1193 | 740214038584557568 | https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg | 1 | Chesapeake_Bay_retriever | 0.586414 | True | Labrador_retriever | 1.897820e-01 | True | vizsla | 6.760720e-02 | True |
| 1194 | 740359016048689152 | https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg | 1 | golden_retriever | 0.863687 | True | kuvasz | 4.859010e-02 | True | Labrador_retriever | 4.739660e-02 | True |
| 1195 | 740365076218183684 | https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg | 1 | bow_tie | 0.246313 | False | Windsor_tie | 1.724460e-01 | False | mushroom | 1.375160e-01 | False |
| 1196 | 740373189193256964 | https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg | 3 | golden_retriever | 0.807644 | True | kuvasz | 1.012860e-01 | True | Labrador_retriever | 2.378530e-02 | True |
| 1197 | 740676976021798912 | https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg | 1 | wombat | 0.462952 | False | Norwegian_elkhound | 2.752250e-01 | True | Siamese_cat | 4.355930e-02 | False |
| 1198 | 740699697422163968 | https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg | 1 | lawn_mower | 0.878863 | False | swing | 2.453510e-02 | False | barrow | 1.957720e-02 | False |
| 1199 | 740711788199743490 | https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg | 1 | toy_poodle | 0.388277 | True | Angora | 1.802640e-01 | False | Persian_cat | 4.965610e-02 | False |
| 1200 | 740995100998766593 | https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg | 1 | malamute | 0.454363 | True | Samoyed | 2.159670e-01 | True | Siberian_husky | 7.750030e-02 | True |
| 1201 | 741067306818797568 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1202 | 741303864243200000 | https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg | 1 | Chihuahua | 0.768156 | True | pug | 1.490160e-02 | True | Pekinese | 1.281580e-02 | True |
| 1203 | 741438259667034112 | https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg | 1 | Chesapeake_Bay_retriever | 0.292675 | True | redbone | 1.978580e-01 | True | vizsla | 1.503120e-01 | True |
| 1204 | 741743634094141440 | https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg | 1 | Labrador_retriever | 0.786089 | True | flat-coated_retriever | 4.865240e-02 | True | Chesapeake_Bay_retriever | 3.469330e-02 | True |
| 1205 | 741793263812808706 | https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg | 1 | kuvasz | 0.311325 | True | French_bulldog | 1.153490e-01 | True | Labrador_retriever | 6.853350e-02 | True |
| 1206 | 742150209887731712 | https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg | 1 | Siamese_cat | 0.112413 | False | French_bulldog | 7.141440e-02 | True | hog | 6.246540e-02 | False |
| 1207 | 742161199639494656 | https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg | 1 | balloon | 0.990736 | False | punching_bag | 4.753560e-03 | False | parachute | 4.359740e-04 | False |
| 1208 | 742385895052087300 | https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg | 1 | Cardigan | 0.566911 | True | Border_collie | 1.175660e-01 | True | Appenzeller | 4.766400e-02 | True |
| 1209 | 742423170473463808 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1210 | 742465774154047488 | https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg | 1 | web_site | 0.997154 | False | comic_book | 4.392210e-04 | False | desktop_computer | 2.675790e-04 | False |
| 1211 | 742528092657332225 | https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg | 2 | sunglasses | 0.900864 | False | sunglass | 4.029060e-02 | False | snorkel | 9.332920e-03 | False |
| 1212 | 743210557239623680 | https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg | 1 | golden_retriever | 0.930705 | True | Chesapeake_Bay_retriever | 2.593410e-02 | True | Labrador_retriever | 7.535360e-03 | True |
| 1213 | 743222593470234624 | https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg | 1 | kuvasz | 0.350629 | True | soft-coated_wheaten_terrier | 1.827820e-01 | True | golden_retriever | 8.766240e-02 | True |
| 1214 | 743253157753532416 | https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg | 1 | malamute | 0.442612 | True | Siberian_husky | 3.681370e-01 | True | Eskimo_dog | 1.778220e-01 | True |
| 1215 | 743510151680958465 | https://pbs.twimg.com/ext_tw_video_thumb/74350... | 1 | sea_lion | 0.859046 | False | tub | 2.040540e-02 | False | hippopotamus | 1.309480e-02 | False |
| 1216 | 743545585370791937 | https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg | 2 | rapeseed | 0.876875 | False | standard_poodle | 6.058350e-02 | True | Great_Pyrenees | 3.300570e-02 | True |
| 1217 | 743595368194129920 | https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg | 1 | hippopotamus | 0.505675 | False | hog | 3.707260e-01 | False | warthog | 1.882720e-02 | False |
| 1218 | 743609206067040256 | https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg | 3 | Weimaraner | 0.982794 | True | American_Staffordshire_terrier | 4.766400e-03 | True | Great_Dane | 3.432010e-03 | True |
| 1219 | 743895849529389061 | https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg | 1 | dalmatian | 0.562315 | True | Great_Dane | 4.164780e-01 | True | German_short-haired_pointer | 8.552360e-03 | True |
| 1220 | 743980027717509120 | https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg | 1 | bull_mastiff | 0.975730 | True | Rhodesian_ridgeback | 8.072610e-03 | True | pug | 5.570870e-03 | True |
| 1221 | 744234799360020481 | https://pbs.twimg.com/ext_tw_video_thumb/74423... | 1 | Labrador_retriever | 0.825333 | True | ice_bear | 4.468080e-02 | False | whippet | 1.844220e-02 | True |
| 1222 | 744334592493166593 | https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg | 1 | Samoyed | 0.960543 | True | Pomeranian | 1.219190e-02 | True | white_wolf | 4.752990e-03 | False |
| 1223 | 744709971296780288 | https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg | 1 | Shetland_sheepdog | 0.234431 | True | Samoyed | 1.148760e-01 | True | collie | 8.661370e-02 | True |
| 1224 | 744971049620602880 | https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg | 1 | toy_poodle | 0.497755 | True | golden_retriever | 2.820170e-01 | True | miniature_poodle | 9.003240e-02 | True |
| 1225 | 744995568523612160 | https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg | 1 | Old_English_sheepdog | 0.427481 | True | Shih-Tzu | 1.463360e-01 | True | Tibetan_terrier | 1.342690e-01 | True |
| 1226 | 745057283344719872 | https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg | 2 | Shetland_sheepdog | 0.963985 | True | collie | 2.620570e-02 | True | Border_collie | 4.543650e-03 | True |
| 1227 | 745314880350101504 | https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg | 2 | ice_bear | 0.807762 | False | great_white_shark | 2.704040e-02 | False | fountain | 2.205180e-02 | False |
| 1228 | 745422732645535745 | https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg | 1 | Labrador_retriever | 0.663800 | True | golden_retriever | 3.082610e-01 | True | ice_bear | 4.269210e-03 | False |
| 1229 | 745433870967832576 | https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg | 1 | barrow | 0.999962 | False | basset | 1.448950e-05 | True | wok | 6.060880e-06 | False |
| 1230 | 745712589599014916 | https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg | 1 | seat_belt | 0.379055 | False | chow | 6.275450e-02 | True | minibus | 5.242260e-02 | False |
| 1231 | 745789745784041472 | https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg | 1 | Pekinese | 0.984267 | True | Shih-Tzu | 8.941660e-03 | True | cocker_spaniel | 1.928260e-03 | True |
| 1232 | 746056683365994496 | https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg | 1 | Shetland_sheepdog | 0.433320 | True | collie | 3.359970e-01 | True | borzoi | 1.771790e-01 | True |
| 1233 | 746131877086527488 | https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg | 1 | chow | 0.575637 | True | Pomeranian | 1.959500e-01 | True | Norwich_terrier | 1.412240e-01 | True |
| 1234 | 746369468511756288 | https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg | 1 | German_shepherd | 0.622957 | True | malinois | 3.388840e-01 | True | wallaby | 2.416150e-02 | False |
| 1235 | 746507379341139972 | https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg | 1 | toy_poodle | 0.508292 | True | Lakeland_terrier | 2.344580e-01 | True | affenpinscher | 8.456280e-02 | True |
| 1236 | 746726898085036033 | https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg | 1 | golden_retriever | 0.256505 | True | Labrador_retriever | 2.524170e-01 | True | seat_belt | 2.031630e-01 | False |
| 1237 | 746790600704425984 | https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg | 3 | Boston_bull | 0.936183 | True | guinea_pig | 1.008400e-02 | False | Cardigan | 1.007700e-02 | True |
| 1238 | 746818907684614144 | https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg | 1 | dingo | 0.175518 | False | timber_wolf | 1.336470e-01 | False | Ibizan_hound | 1.015370e-01 | True |
| 1239 | 746872823977771008 | https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg | 1 | Pembroke | 0.540201 | True | beagle | 2.078350e-01 | True | Italian_greyhound | 4.356490e-02 | True |
| 1240 | 746906459439529985 | https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg | 1 | traffic_light | 0.470708 | False | fountain | 1.997760e-01 | False | space_shuttle | 6.480700e-02 | False |
| 1241 | 747103485104099331 | https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg | 1 | Labrador_retriever | 0.991954 | True | golden_retriever | 2.228490e-03 | True | doormat | 1.404020e-03 | False |
| 1242 | 747204161125646336 | https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg | 2 | coil | 0.533699 | False | dugong | 8.795910e-02 | False | rain_barrel | 3.922150e-02 | False |
| 1243 | 747219827526344708 | https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg | 2 | Shetland_sheepdog | 0.548018 | True | marmot | 1.655030e-01 | False | collie | 4.300260e-02 | True |
| 1244 | 747461612269887489 | https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg | 1 | binoculars | 0.192717 | False | barbershop | 8.583820e-02 | False | ballplayer | 8.467220e-02 | False |
| 1245 | 747512671126323200 | https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg | 1 | Cardigan | 0.111493 | True | malinois | 9.508920e-02 | True | German_shepherd | 8.014560e-02 | True |
| 1246 | 747594051852075008 | https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg | 1 | basenji | 0.389136 | True | dingo | 2.702260e-01 | False | Chihuahua | 9.893880e-02 | True |
| 1247 | 747600769478692864 | https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg | 1 | Chesapeake_Bay_retriever | 0.804363 | True | Weimaraner | 5.443110e-02 | True | Labrador_retriever | 4.326760e-02 | True |
| 1248 | 747816857231626240 | https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg | 1 | Pembroke | 0.768923 | True | Chihuahua | 2.905300e-02 | True | Shetland_sheepdog | 2.903540e-02 | True |
| 1249 | 747844099428986880 | https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg | 1 | Pembroke | 0.360428 | True | papillon | 2.631340e-01 | True | Chihuahua | 1.312460e-01 | True |
| 1250 | 747885874273214464 | https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg | 1 | kuvasz | 0.408450 | True | Samoyed | 1.413300e-01 | True | pug | 8.301840e-02 | True |
| 1251 | 747933425676525569 | https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg | 1 | Samoyed | 0.998201 | True | Eskimo_dog | 7.928500e-04 | True | Great_Pyrenees | 2.957500e-04 | True |
| 1252 | 747963614829678593 | https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg | 1 | kelpie | 0.307672 | True | Irish_terrier | 1.974860e-01 | True | dingo | 1.054750e-01 | False |
| 1253 | 748307329658011649 | https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg | 2 | paddle | 0.589066 | False | shovel | 3.806230e-02 | False | mountain_tent | 2.920330e-02 | False |
| 1254 | 748324050481647620 | https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg | 1 | Shetland_sheepdog | 0.880499 | True | collie | 1.079010e-01 | True | Pembroke | 3.606670e-03 | True |
| 1255 | 748346686624440324 | https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg | 1 | borzoi | 0.596455 | True | whippet | 2.314280e-01 | True | Saluki | 5.826140e-02 | True |
| 1256 | 748568946752774144 | https://pbs.twimg.com/ext_tw_video_thumb/74856... | 1 | Tibetan_terrier | 0.328161 | True | toy_poodle | 3.048360e-01 | True | miniature_poodle | 7.087840e-02 | True |
| 1257 | 748575535303884801 | https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg | 1 | muzzle | 0.176172 | False | seat_belt | 1.609530e-01 | False | soft-coated_wheaten_terrier | 8.649880e-02 | True |
| 1258 | 748692773788876800 | https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg | 1 | ox | 0.337871 | False | plow | 2.692870e-01 | False | oxcart | 2.456530e-01 | False |
| 1259 | 748699167502000129 | https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg | 1 | Pembroke | 0.849029 | True | Cardigan | 8.362880e-02 | True | kelpie | 2.439450e-02 | True |
| 1260 | 748705597323898880 | https://pbs.twimg.com/ext_tw_video_thumb/74870... | 1 | tiger_shark | 0.548497 | False | great_white_shark | 1.302520e-01 | False | scuba_diver | 1.218870e-01 | False |
| 1261 | 748932637671223296 | https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg | 1 | borzoi | 0.742912 | True | wire-haired_fox_terrier | 2.040820e-01 | True | English_setter | 2.103230e-02 | True |
| 1262 | 748977405889503236 | https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg | 1 | German_short-haired_pointer | 0.742216 | True | bluetick | 1.528100e-01 | True | English_setter | 5.183470e-02 | True |
| 1263 | 749036806121881602 | https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg | 1 | sulphur-crested_cockatoo | 0.960276 | False | West_Highland_white_terrier | 1.952230e-02 | True | Samoyed | 6.395620e-03 | True |
| 1264 | 749064354620928000 | https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg | 2 | pug | 0.985222 | True | Brabancon_griffon | 3.313660e-03 | True | Pekinese | 2.988880e-03 | True |
| 1265 | 749317047558017024 | https://pbs.twimg.com/ext_tw_video_thumb/74931... | 1 | wire-haired_fox_terrier | 0.155144 | True | Lakeland_terrier | 1.083820e-01 | True | buckeye | 7.461670e-02 | False |
| 1266 | 749395845976588288 | https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg | 1 | Pomeranian | 0.973715 | True | chow | 2.075810e-02 | True | keeshond | 3.784360e-03 | True |
| 1267 | 749403093750648834 | https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg | 1 | Chesapeake_Bay_retriever | 0.694541 | True | curly-coated_retriever | 7.633530e-02 | True | Irish_water_spaniel | 4.854950e-02 | True |
| 1268 | 749417653287129088 | https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg | 2 | papillon | 0.772894 | True | Shetland_sheepdog | 4.240760e-02 | True | collie | 4.231310e-02 | True |
| 1269 | 749774190421639168 | https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg | 1 | Pekinese | 0.879012 | True | Chihuahua | 5.485500e-02 | True | Blenheim_spaniel | 2.104100e-02 | True |
| 1270 | 749981277374128128 | https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg | 1 | bow_tie | 0.533941 | False | sunglasses | 8.082220e-02 | False | sunglass | 5.077620e-02 | False |
| 1271 | 749996283729883136 | https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg | 1 | Old_English_sheepdog | 0.515319 | True | West_Highland_white_terrier | 1.510400e-01 | True | soft-coated_wheaten_terrier | 5.642000e-02 | True |
| 1272 | 750011400160841729 | https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg | 1 | muzzle | 0.237620 | False | Boston_bull | 8.714980e-02 | True | sombrero | 6.850990e-02 | False |
| 1273 | 750026558547456000 | https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg | 1 | standard_poodle | 0.258732 | True | teddy | 1.307600e-01 | False | toy_poodle | 7.172630e-02 | True |
| 1274 | 750041628174217216 | https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg | 1 | Labrador_retriever | 0.252031 | True | Maltese_dog | 1.880900e-01 | True | golden_retriever | 1.330170e-01 | True |
| 1275 | 750056684286914561 | https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg | 1 | Saluki | 0.484428 | True | borzoi | 2.635500e-01 | True | Labrador_retriever | 7.700380e-02 | True |
| 1276 | 750071704093859840 | https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg | 2 | redbone | 0.382113 | True | malinois | 2.499430e-01 | True | miniature_pinscher | 7.092620e-02 | True |
| 1277 | 750086836815486976 | https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg | 1 | pug | 0.978277 | True | teddy | 3.134460e-03 | False | Brabancon_griffon | 3.061490e-03 | True |
| 1278 | 750101899009982464 | https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg | 2 | golden_retriever | 0.316704 | True | llama | 1.742690e-01 | False | Labrador_retriever | 1.473640e-01 | True |
| 1279 | 750117059602808832 | https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg | 2 | Shih-Tzu | 0.814405 | True | Lhasa | 1.752200e-01 | True | Pekinese | 8.072300e-03 | True |
| 1280 | 750132105863102464 | https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg | 1 | toy_poodle | 0.478018 | True | miniature_poodle | 2.074580e-01 | True | croquet_ball | 8.587890e-02 | False |
| 1281 | 750147208377409536 | https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg | 1 | pug | 0.977765 | True | Boston_bull | 4.794250e-03 | True | French_bulldog | 4.572840e-03 | True |
| 1282 | 750383411068534784 | https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg | 1 | Border_collie | 0.672791 | True | collie | 2.701880e-01 | True | papillon | 3.450390e-02 | True |
| 1283 | 750429297815552001 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1284 | 750506206503038976 | https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg | 1 | American_black_bear | 0.219166 | False | lesser_panda | 2.147150e-01 | False | titi | 9.168510e-02 | False |
| 1285 | 750719632563142656 | https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg | 1 | Pembroke | 0.972587 | True | Cardigan | 1.477170e-02 | True | basenji | 5.798030e-03 | True |
| 1286 | 750868782890057730 | https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg | 4 | toy_poodle | 0.912648 | True | miniature_poodle | 3.505920e-02 | True | seat_belt | 2.637560e-02 | False |
| 1287 | 751132876104687617 | https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg | 1 | Labrador_retriever | 0.929390 | True | Chesapeake_Bay_retriever | 3.825350e-02 | True | golden_retriever | 7.610200e-03 | True |
| 1288 | 751205363882532864 | https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg | 2 | Labrador_retriever | 0.947164 | True | Chesapeake_Bay_retriever | 2.059670e-02 | True | golden_retriever | 1.657920e-02 | True |
| 1289 | 751251247299190784 | https://pbs.twimg.com/ext_tw_video_thumb/75125... | 1 | Walker_hound | 0.178852 | True | German_short-haired_pointer | 1.157520e-01 | True | English_foxhound | 1.137960e-01 | True |
| 1290 | 751456908746354688 | https://pbs.twimg.com/ext_tw_video_thumb/75145... | 1 | golden_retriever | 0.714409 | True | Afghan_hound | 6.616260e-02 | True | chow | 2.841260e-02 | True |
| 1291 | 751538714308972544 | https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg | 2 | Labrador_retriever | 0.516257 | True | golden_retriever | 2.108390e-01 | True | dingo | 1.620220e-01 | False |
| 1292 | 751583847268179968 | https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg | 1 | dalmatian | 0.868304 | True | studio_couch | 5.962300e-02 | False | snow_leopard | 1.387630e-02 | False |
| 1293 | 751598357617971201 | https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg | 1 | toy_poodle | 0.757756 | True | miniature_poodle | 3.514950e-02 | True | Scottish_deerhound | 2.769820e-02 | True |
| 1294 | 751830394383790080 | https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg | 1 | chow | 0.703569 | True | Pomeranian | 7.663670e-02 | True | Siamese_cat | 4.595910e-02 | False |
| 1295 | 751937170840121344 | https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg | 1 | Lakeland_terrier | 0.424168 | True | teddy | 2.605620e-01 | False | golden_retriever | 1.274320e-01 | True |
| 1296 | 752173152931807232 | https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg | 1 | Labrador_retriever | 0.527659 | True | German_shepherd | 1.747650e-01 | True | Chihuahua | 4.552540e-02 | True |
| 1297 | 752309394570878976 | https://pbs.twimg.com/ext_tw_video_thumb/67535... | 1 | upright | 0.303415 | False | golden_retriever | 1.813510e-01 | True | Brittany_spaniel | 1.620840e-01 | True |
| 1298 | 752334515931054080 | https://pbs.twimg.com/ext_tw_video_thumb/75233... | 1 | Bedlington_terrier | 0.399163 | True | standard_poodle | 8.642490e-02 | True | wire-haired_fox_terrier | 7.523110e-02 | True |
| 1299 | 752519690950500352 | https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg | 3 | swing | 0.999984 | False | Labrador_retriever | 1.002880e-05 | True | Eskimo_dog | 1.434470e-06 | True |
| 1300 | 752660715232722944 | https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg | 2 | goose | 0.339324 | False | English_setter | 5.051180e-02 | True | basset | 4.909330e-02 | True |
| 1301 | 752682090207055872 | https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg | 2 | German_shepherd | 0.299966 | True | Eskimo_dog | 2.783550e-01 | True | Siberian_husky | 1.785200e-01 | True |
| 1302 | 752917284578922496 | https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg | 1 | German_shepherd | 0.609283 | True | malinois | 3.524600e-01 | True | kelpie | 1.610520e-02 | True |
| 1303 | 753026973505581056 | https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg | 3 | Pembroke | 0.868511 | True | Cardigan | 1.037080e-01 | True | Shetland_sheepdog | 1.814160e-02 | True |
| 1304 | 753294487569522689 | https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg | 1 | chow | 0.194773 | True | monitor | 1.023050e-01 | False | Siberian_husky | 8.685470e-02 | True |
| 1305 | 753375668877008896 | https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg | 1 | bluetick | 0.360071 | True | crutch | 1.348160e-01 | False | tripod | 9.820660e-02 | False |
| 1306 | 753398408988139520 | https://pbs.twimg.com/ext_tw_video_thumb/75339... | 1 | whippet | 0.163794 | True | Italian_greyhound | 1.571920e-01 | True | English_foxhound | 1.429950e-01 | True |
| 1307 | 753420520834629632 | https://pbs.twimg.com/ext_tw_video_thumb/75342... | 1 | balloon | 0.267961 | False | lakeside | 8.576370e-02 | False | rapeseed | 4.080890e-02 | False |
| 1308 | 753655901052166144 | https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg | 1 | miniature_pinscher | 0.456092 | True | toy_terrier | 1.531260e-01 | True | Italian_greyhound | 1.441470e-01 | True |
| 1309 | 754011816964026368 | https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg | 1 | French_bulldog | 0.600985 | True | Boston_bull | 2.731760e-01 | True | boxer | 5.677150e-02 | True |
| 1310 | 754120377874386944 | https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg | 1 | chow | 0.168909 | True | Norfolk_terrier | 1.291140e-01 | True | Pomeranian | 1.208220e-01 | True |
| 1311 | 754449512966619136 | https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg | 1 | beagle | 0.858513 | True | basset | 7.601190e-02 | True | English_foxhound | 1.624560e-02 | True |
| 1312 | 754482103782404096 | https://pbs.twimg.com/ext_tw_video_thumb/75448... | 1 | tub | 0.596796 | False | bathtub | 3.810980e-01 | False | shower_curtain | 1.762880e-02 | False |
| 1313 | 754747087846248448 | https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg | 1 | rotisserie | 0.471493 | False | cash_machine | 2.508370e-01 | False | sliding_door | 1.178720e-01 | False |
| 1314 | 754856583969079297 | https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg | 2 | golden_retriever | 0.872385 | True | Labrador_retriever | 9.996310e-02 | True | cocker_spaniel | 6.050830e-03 | True |
| 1315 | 754874841593970688 | https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg | 1 | pug | 0.272205 | True | bull_mastiff | 2.515300e-01 | True | bath_towel | 1.168060e-01 | False |
| 1316 | 755110668769038337 | https://pbs.twimg.com/ext_tw_video_thumb/75511... | 1 | Labrador_retriever | 0.708974 | True | golden_retriever | 1.143140e-01 | True | Great_Pyrenees | 6.581340e-02 | True |
| 1317 | 755206590534418437 | https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg | 1 | web_site | 0.906673 | False | printer | 8.600270e-03 | False | carton | 4.533190e-03 | False |
| 1318 | 755955933503782912 | https://pbs.twimg.com/ext_tw_video_thumb/75595... | 1 | Pekinese | 0.596882 | True | Maltese_dog | 1.764780e-01 | True | Great_Pyrenees | 2.677530e-02 | True |
| 1319 | 756275833623502848 | https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg | 1 | Airedale | 0.602957 | True | Irish_terrier | 8.698080e-02 | True | bloodhound | 8.627650e-02 | True |
| 1320 | 756288534030475264 | https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg | 3 | conch | 0.925621 | False | French_bulldog | 3.249220e-02 | True | tiger_cat | 6.679080e-03 | False |
| 1321 | 756303284449767430 | https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg | 1 | golden_retriever | 0.981652 | True | cocker_spaniel | 6.790300e-03 | True | Labrador_retriever | 4.324510e-03 | True |
| 1322 | 756526248105566208 | https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg | 1 | geyser | 0.991273 | False | volcano | 4.672510e-03 | False | fountain | 1.234030e-03 | False |
| 1323 | 756651752796094464 | https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg | 1 | Pembroke | 0.294808 | True | kelpie | 2.823010e-01 | True | Cardigan | 1.126010e-01 | True |
| 1324 | 756939218950160384 | https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg | 1 | golden_retriever | 0.790371 | True | cocker_spaniel | 1.302680e-01 | True | Labrador_retriever | 6.462870e-02 | True |
| 1325 | 756998049151549440 | https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg | 4 | golden_retriever | 0.678555 | True | Labrador_retriever | 7.263200e-02 | True | Border_terrier | 4.903300e-02 | True |
| 1326 | 757354760399941633 | https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg | 1 | Italian_greyhound | 0.914667 | True | whippet | 4.777370e-02 | True | ice_lolly | 1.547680e-02 | False |
| 1327 | 757393109802180609 | https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg | 2 | Labrador_retriever | 0.787125 | True | Chesapeake_Bay_retriever | 1.126760e-01 | True | Rottweiler | 4.803860e-02 | True |
| 1328 | 757400162377592832 | https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg | 1 | seat_belt | 0.523926 | False | golden_retriever | 8.780030e-02 | True | Tibetan_mastiff | 7.512670e-02 | True |
| 1329 | 757596066325864448 | https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg | 1 | doormat | 0.845256 | False | wallet | 9.571800e-02 | False | wool | 2.607190e-02 | False |
| 1330 | 757597904299253760 | https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg | 1 | doormat | 0.836106 | False | wallet | 5.662690e-02 | False | purse | 5.133350e-02 | False |
| 1331 | 757611664640446465 | https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg | 1 | bluetick | 0.829259 | True | beagle | 1.453580e-01 | True | Walker_hound | 1.959530e-02 | True |
| 1332 | 757725642876129280 | https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg | 2 | seat_belt | 0.425176 | False | Labrador_retriever | 1.281280e-01 | True | Siamese_cat | 9.124110e-02 | False |
| 1333 | 757729163776290825 | https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg | 2 | cash_machine | 0.802333 | False | schipperke | 4.551860e-02 | True | German_shepherd | 2.335350e-02 | True |
| 1334 | 757741869644341248 | https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg | 1 | skunk | 0.609715 | False | Old_English_sheepdog | 1.288990e-01 | True | Siberian_husky | 1.907610e-02 | True |
| 1335 | 758041019896193024 | https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg | 1 | bookshop | 0.794272 | False | Cardigan | 5.126530e-02 | True | Bernese_mountain_dog | 2.659630e-02 | True |
| 1336 | 758355060040593408 | https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg | 1 | Pembroke | 0.987643 | True | Cardigan | 1.211210e-02 | True | Siamese_cat | 1.174770e-04 | False |
| 1337 | 758405701903519748 | https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg | 4 | Chesapeake_Bay_retriever | 0.702954 | True | laptop | 9.227750e-02 | False | notebook | 3.272680e-02 | False |
| 1338 | 758467244762497024 | https://pbs.twimg.com/ext_tw_video_thumb/75846... | 1 | Labrador_retriever | 0.436377 | True | Chihuahua | 1.139560e-01 | True | American_Staffordshire_terrier | 9.968910e-02 | True |
| 1339 | 758474966123810816 | https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg | 1 | Pembroke | 0.546145 | True | Cardigan | 2.442000e-01 | True | German_shepherd | 1.004290e-01 | True |
| 1340 | 758740312047005698 | https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg | 1 | Chesapeake_Bay_retriever | 0.848514 | True | Labrador_retriever | 1.100540e-01 | True | curly-coated_retriever | 2.520140e-02 | True |
| 1341 | 758828659922702336 | https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg | 1 | Chesapeake_Bay_retriever | 0.480048 | True | vizsla | 2.645220e-01 | True | Weimaraner | 1.218400e-01 | True |
| 1342 | 758854675097526272 | https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg | 4 | barrow | 0.974047 | False | Old_English_sheepdog | 2.379140e-02 | True | komondor | 1.246300e-03 | True |
| 1343 | 759047813560868866 | https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg | 1 | Labrador_retriever | 0.778546 | True | bathing_cap | 1.542540e-01 | False | golden_retriever | 2.497160e-02 | True |
| 1344 | 759099523532779520 | https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg | 1 | Shetland_sheepdog | 0.129034 | True | kelpie | 1.175080e-01 | True | Siberian_husky | 1.067080e-01 | True |
| 1345 | 759159934323924993 | https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg | 1 | Irish_terrier | 0.254856 | True | briard | 2.277160e-01 | True | soft-coated_wheaten_terrier | 2.232630e-01 | True |
| 1346 | 759197388317847553 | https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg | 1 | kuvasz | 0.511341 | True | golden_retriever | 7.689910e-02 | True | white_wolf | 6.326940e-02 | False |
| 1347 | 759447681597108224 | https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg | 1 | kuvasz | 0.223148 | True | Bedlington_terrier | 2.207310e-01 | True | teddy | 1.813030e-01 | False |
| 1348 | 759557299618865152 | https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg | 2 | golden_retriever | 0.763333 | True | Chesapeake_Bay_retriever | 1.942510e-01 | True | Labrador_retriever | 1.222540e-02 | True |
| 1349 | 759566828574212096 | https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg | 1 | Labrador_retriever | 0.967397 | True | golden_retriever | 1.664140e-02 | True | ice_bear | 1.485760e-02 | False |
| 1350 | 759793422261743616 | https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg | 2 | golden_retriever | 0.985876 | True | Labrador_retriever | 1.947770e-03 | True | kuvasz | 1.751740e-03 | True |
| 1351 | 759846353224826880 | https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg | 1 | Sussex_spaniel | 0.355395 | True | vizsla | 1.410940e-01 | True | otterhound | 9.219820e-02 | True |
| 1352 | 759923798737051648 | https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg | 1 | Labrador_retriever | 0.324579 | True | seat_belt | 1.091680e-01 | False | pug | 1.024660e-01 | True |
| 1353 | 760190180481531904 | https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg | 1 | balloon | 0.917525 | False | confectionery | 4.932910e-02 | False | maraca | 1.764780e-02 | False |
| 1354 | 760252756032651264 | https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg | 1 | radio_telescope | 0.155279 | False | dam | 1.545150e-01 | False | crane | 9.804000e-02 | False |
| 1355 | 760290219849637889 | https://pbs.twimg.com/ext_tw_video_thumb/76028... | 1 | Old_English_sheepdog | 0.302200 | True | Lhasa | 2.588030e-01 | True | briard | 1.792000e-01 | True |
| 1356 | 760539183865880579 | https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg | 1 | Samoyed | 0.988013 | True | malamute | 4.518240e-03 | True | West_Highland_white_terrier | 1.189250e-03 | True |
| 1357 | 760641137271070720 | https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg | 1 | axolotl | 0.132695 | False | killer_whale | 1.311130e-01 | False | sea_lion | 6.965200e-02 | False |
| 1358 | 760656994973933572 | https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg | 1 | golden_retriever | 0.760546 | True | Labrador_retriever | 2.320790e-01 | True | redbone | 2.874170e-03 | True |
| 1359 | 760893934457552897 | https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg | 1 | Blenheim_spaniel | 0.113992 | True | cocker_spaniel | 1.057800e-01 | True | borzoi | 7.393450e-02 | True |
| 1360 | 761004547850530816 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1361 | 761227390836215808 | https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg | 1 | cougar | 0.306512 | False | French_bulldog | 2.808020e-01 | True | boxer | 5.452340e-02 | True |
| 1362 | 761292947749015552 | https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg | 1 | standard_poodle | 0.660893 | True | Samoyed | 3.148860e-01 | True | miniature_poodle | 8.833830e-03 | True |
| 1363 | 761334018830917632 | https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg | 1 | Norwegian_elkhound | 0.822936 | True | malinois | 8.615250e-02 | True | German_shepherd | 6.333290e-02 | True |
| 1364 | 761371037149827077 | https://pbs.twimg.com/tweet_video_thumb/CeBym7... | 1 | brown_bear | 0.713293 | False | Indian_elephant | 1.728440e-01 | False | water_buffalo | 3.890220e-02 | False |
| 1365 | 761599872357261312 | https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg | 1 | Gordon_setter | 0.240427 | True | Saluki | 2.242690e-01 | True | Doberman | 1.297300e-01 | True |
| 1366 | 761672994376806400 | https://pbs.twimg.com/ext_tw_video_thumb/76167... | 1 | gondola | 0.318851 | False | sea_lion | 3.065250e-01 | False | pool_table | 1.115650e-01 | False |
| 1367 | 761745352076779520 | https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg | 1 | paddle | 0.393118 | False | canoe | 1.780880e-01 | False | lakeside | 9.971260e-02 | False |
| 1368 | 761750502866649088 | https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg | 1 | golden_retriever | 0.586937 | True | Labrador_retriever | 3.982600e-01 | True | kuvasz | 5.409690e-03 | True |
| 1369 | 761976711479193600 | https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg | 3 | Labrador_retriever | 0.475552 | True | Chesapeake_Bay_retriever | 8.289800e-02 | True | Staffordshire_bullterrier | 4.846400e-02 | True |
| 1370 | 762035686371364864 | https://pbs.twimg.com/ext_tw_video_thumb/76203... | 1 | home_theater | 0.063152 | False | cash_machine | 4.669210e-02 | False | theater_curtain | 4.627680e-02 | False |
| 1371 | 762316489655476224 | https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg | 1 | African_grey | 0.270468 | False | Madagascar_cat | 7.618650e-02 | False | television | 3.330580e-02 | False |
| 1372 | 762464539388485633 | https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg | 4 | chow | 0.999953 | True | Tibetan_mastiff | 2.335910e-05 | True | dhole | 3.010330e-06 | False |
| 1373 | 762471784394268675 | https://pbs.twimg.com/ext_tw_video_thumb/76247... | 1 | Samoyed | 0.540276 | True | standard_poodle | 2.798020e-01 | True | toy_poodle | 1.020580e-01 | True |
| 1374 | 762699858130116608 | https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg | 1 | kelpie | 0.519047 | True | German_shepherd | 2.960690e-01 | True | dingo | 6.100530e-02 | False |
| 1375 | 763103485927849985 | https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg | 2 | seat_belt | 0.685821 | False | ice_bear | 8.159720e-02 | False | chow | 3.908480e-02 | True |
| 1376 | 763183847194451968 | https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg | 1 | miniature_poodle | 0.354674 | True | toy_poodle | 3.386420e-01 | True | teddy | 1.558280e-01 | False |
| 1377 | 763837565564780549 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1378 | 764259802650378240 | https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg | 1 | German_shepherd | 0.973677 | True | malinois | 2.594970e-02 | True | kelpie | 1.915680e-04 | True |
| 1379 | 764857477905154048 | https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg | 1 | Bernese_mountain_dog | 0.792059 | True | Appenzeller | 1.550340e-01 | True | EntleBucher | 3.837380e-02 | True |
| 1380 | 765222098633691136 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1381 | 765371061932261376 | https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg | 2 | golden_retriever | 0.829456 | True | Labrador_retriever | 8.937090e-02 | True | kuvasz | 1.702750e-02 | True |
| 1382 | 765395769549590528 | https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg | 1 | Pembroke | 0.509491 | True | Cardigan | 3.304010e-01 | True | Shetland_sheepdog | 3.887490e-02 | True |
| 1383 | 765669560888528897 | https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg | 1 | beagle | 0.993333 | True | Walker_hound | 2.902190e-03 | True | basset | 2.415180e-03 | True |
| 1384 | 765719909049503744 | https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg | 1 | golden_retriever | 0.969518 | True | Labrador_retriever | 2.169610e-02 | True | Border_terrier | 2.074550e-03 | True |
| 1385 | 766008592277377025 | https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg | 1 | Welsh_springer_spaniel | 0.728153 | True | basset | 1.038420e-01 | True | Brittany_spaniel | 6.241430e-02 | True |
| 1386 | 766069199026450432 | https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg | 1 | redbone | 0.484855 | True | beagle | 4.375270e-01 | True | basset | 1.058540e-02 | True |
| 1387 | 766078092750233600 | https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg | 1 | toy_poodle | 0.420463 | True | miniature_poodle | 1.326400e-01 | True | Chesapeake_Bay_retriever | 1.215230e-01 | True |
| 1388 | 766313316352462849 | https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg | 1 | toy_poodle | 0.966896 | True | miniature_poodle | 1.642430e-02 | True | cocker_spaniel | 1.022710e-02 | True |
| 1389 | 766423258543644672 | https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg | 2 | keeshond | 0.995823 | True | Pomeranian | 3.897210e-03 | True | Norwegian_elkhound | 2.531090e-04 | True |
| 1390 | 766693177336135680 | https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg | 1 | Doberman | 0.948355 | True | vizsla | 1.503200e-02 | True | Rhodesian_ridgeback | 9.630840e-03 | True |
| 1391 | 766793450729734144 | https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg | 1 | beagle | 0.451697 | True | basset | 1.975130e-01 | True | bloodhound | 7.269860e-02 | True |
| 1392 | 767122157629476866 | https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg | 2 | toy_poodle | 0.873841 | True | miniature_poodle | 5.919180e-02 | True | Irish_terrier | 3.530600e-02 | True |
| 1393 | 767191397493538821 | https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg | 1 | patio | 0.708665 | False | boathouse | 1.100560e-01 | False | pier | 3.953230e-02 | False |
| 1394 | 767500508068192258 | https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg | 1 | chow | 0.483228 | True | golden_retriever | 1.650630e-01 | True | Norfolk_terrier | 6.017290e-02 | True |
| 1395 | 767754930266464257 | https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg | 1 | vizsla | 0.307794 | True | fountain | 1.421850e-01 | False | Chesapeake_Bay_retriever | 1.139030e-01 | True |
| 1396 | 767884188863397888 | https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg | 3 | coral_reef | 0.327740 | False | cliff | 1.571820e-01 | False | lakeside | 4.880960e-02 | False |
| 1397 | 768193404517830656 | https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg | 1 | lion | 0.396984 | False | ram | 3.008510e-01 | False | cheetah | 9.447400e-02 | False |
| 1398 | 768473857036525572 | https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg | 1 | Labrador_retriever | 0.739170 | True | Chesapeake_Bay_retriever | 2.464880e-01 | True | kelpie | 6.892340e-03 | True |
| 1399 | 768596291618299904 | https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg | 1 | Great_Pyrenees | 0.729745 | True | golden_retriever | 2.379610e-01 | True | Labrador_retriever | 2.090330e-02 | True |
| 1400 | 768609597686943744 | https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg | 1 | basenji | 0.183283 | True | Italian_greyhound | 1.360120e-01 | True | whippet | 6.012990e-02 | True |
| 1401 | 768855141948723200 | https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg | 1 | chow | 0.720219 | True | Brabancon_griffon | 5.836530e-02 | True | Rottweiler | 5.511350e-02 | True |
| 1402 | 768970937022709760 | https://pbs.twimg.com/ext_tw_video_thumb/76896... | 1 | Pomeranian | 0.182358 | True | golden_retriever | 1.106580e-01 | True | mousetrap | 8.639890e-02 | False |
| 1403 | 769212283578875904 | https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg | 1 | golden_retriever | 0.166538 | True | Pekinese | 1.482150e-01 | True | cocker_spaniel | 8.273510e-02 | True |
| 1404 | 769695466921623552 | https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg | 1 | pug | 0.407117 | True | muzzle | 1.656380e-01 | False | kuvasz | 4.583720e-02 | True |
| 1405 | 769940425801170949 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1406 | 770069151037685760 | https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg | 1 | Boston_bull | 0.414965 | True | American_Staffordshire_terrier | 2.869850e-01 | True | Staffordshire_bullterrier | 1.149700e-01 | True |
| 1407 | 770093767776997377 | https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg | 1 | golden_retriever | 0.843799 | True | Labrador_retriever | 5.295590e-02 | True | kelpie | 3.571110e-02 | True |
| 1408 | 770293558247038976 | https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg | 1 | Italian_greyhound | 0.931668 | True | Mexican_hairless | 3.889620e-02 | True | whippet | 1.315140e-02 | True |
| 1409 | 770414278348247044 | https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg | 1 | maillot | 0.580528 | False | maillot | 8.144890e-02 | False | golden_retriever | 5.356960e-02 | True |
| 1410 | 770655142660169732 | https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg | 1 | Madagascar_cat | 0.494803 | False | skunk | 1.611840e-01 | False | paper_towel | 9.157150e-02 | False |
| 1411 | 770772759874076672 | https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg | 1 | chow | 0.979515 | True | golden_retriever | 1.021870e-02 | True | Pomeranian | 4.606040e-03 | True |
| 1412 | 770787852854652928 | https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg | 1 | Bernese_mountain_dog | 0.787812 | True | Greater_Swiss_Mountain_dog | 1.639460e-01 | True | EntleBucher | 2.029340e-02 | True |
| 1413 | 771004394259247104 | https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg | 1 | home_theater | 0.414338 | False | iPod | 5.274130e-02 | False | pop_bottle | 4.882060e-02 | False |
| 1414 | 771014301343748096 | https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg | 1 | meerkat | 0.202335 | False | doormat | 1.117900e-01 | False | macaque | 8.892530e-02 | False |
| 1415 | 771102124360998913 | https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg | 1 | Labrador_retriever | 0.568789 | True | pug | 1.799180e-01 | True | Staffordshire_bullterrier | 3.443740e-02 | True |
| 1416 | 771136648247640064 | https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg | 1 | bathtub | 0.368660 | False | golden_retriever | 2.974020e-01 | True | tub | 2.017110e-01 | False |
| 1417 | 771171053431250945 | https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg | 3 | Samoyed | 0.978833 | True | Pomeranian | 1.276300e-02 | True | Eskimo_dog | 1.853050e-03 | True |
| 1418 | 771380798096281600 | https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg | 1 | collie | 0.503728 | True | Border_collie | 4.509440e-01 | True | English_springer | 1.269280e-02 | True |
| 1419 | 771500966810099713 | https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg | 1 | Labrador_retriever | 0.833952 | True | golden_retriever | 1.032230e-01 | True | soccer_ball | 1.209390e-02 | False |
| 1420 | 771770456517009408 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1421 | 772102971039580160 | https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg | 1 | Pembroke | 0.541780 | True | Cardigan | 2.605040e-01 | True | Shetland_sheepdog | 6.370310e-02 | True |
| 1422 | 772114945936949249 | https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg | 1 | Chihuahua | 0.803293 | True | toy_terrier | 5.298000e-02 | True | Italian_greyhound | 3.723880e-02 | True |
| 1423 | 772117678702071809 | https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg | 1 | Labrador_retriever | 0.217821 | True | beagle | 1.576770e-01 | True | golden_retriever | 1.277260e-01 | True |
| 1424 | 772152991789019136 | https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg | 2 | golden_retriever | 0.275318 | True | Irish_setter | 1.009880e-01 | True | vizsla | 7.352490e-02 | True |
| 1425 | 772193107915964416 | https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg | 1 | Pembroke | 0.367945 | True | Chihuahua | 2.235220e-01 | True | Pekinese | 1.648710e-01 | True |
| 1426 | 772581559778025472 | https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg | 3 | Newfoundland | 0.574345 | True | Border_collie | 1.283520e-01 | True | Saint_Bernard | 5.947550e-02 | True |
| 1427 | 772615324260794368 | https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg | 1 | dalmatian | 0.556595 | True | whippet | 1.510470e-01 | True | American_Staffordshire_terrier | 9.643550e-02 | True |
| 1428 | 772826264096874500 | https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg | 1 | basset | 0.915351 | True | Walker_hound | 7.241590e-02 | True | beagle | 8.228940e-03 | True |
| 1429 | 772877495989305348 | https://pbs.twimg.com/ext_tw_video_thumb/77287... | 1 | tabby | 0.218303 | False | Norwegian_elkhound | 1.385230e-01 | True | wombat | 7.421720e-02 | False |
| 1430 | 773191612633579521 | https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg | 1 | Blenheim_spaniel | 0.427766 | True | Shih-Tzu | 2.192560e-01 | True | Welsh_springer_spaniel | 1.446140e-01 | True |
| 1431 | 773247561583001600 | https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg | 1 | seat_belt | 0.713588 | False | miniature_pinscher | 8.336880e-02 | True | Brabancon_griffon | 7.569610e-02 | True |
| 1432 | 773308824254029826 | https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg | 1 | shopping_cart | 0.572349 | False | Labrador_retriever | 1.514060e-01 | True | shopping_basket | 1.071020e-01 | False |
| 1433 | 773547596996571136 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1434 | 773670353721753600 | https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg | 1 | Old_English_sheepdog | 0.969311 | True | Maltese_dog | 1.324300e-02 | True | soft-coated_wheaten_terrier | 4.857310e-03 | True |
| 1435 | 773704687002451968 | https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg | 2 | silky_terrier | 0.324251 | True | Yorkshire_terrier | 1.812100e-01 | True | Airedale | 1.334360e-01 | True |
| 1436 | 773922284943896577 | https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg | 1 | Pomeranian | 0.554331 | True | Samoyed | 4.321580e-01 | True | chow | 3.199420e-03 | True |
| 1437 | 773985732834758656 | https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg | 4 | giant_panda | 0.451149 | False | fur_coat | 1.480010e-01 | False | pug | 1.095700e-01 | True |
| 1438 | 774314403806253056 | https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg | 3 | Eskimo_dog | 0.596045 | True | Siberian_husky | 2.230670e-01 | True | Saluki | 3.632470e-02 | True |
| 1439 | 774639387460112384 | https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg | 1 | Walker_hound | 0.627593 | True | basenji | 1.287050e-01 | True | Ibizan_hound | 1.262820e-01 | True |
| 1440 | 774757898236878852 | https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg | 1 | toy_poodle | 0.719941 | True | miniature_poodle | 2.515460e-01 | True | Lakeland_terrier | 7.008380e-03 | True |
| 1441 | 775085132600442880 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1442 | 775364825476165632 | https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg | 3 | beagle | 0.571229 | True | Chihuahua | 1.752570e-01 | True | Pembroke | 3.430630e-02 | True |
| 1443 | 775729183532220416 | https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg | 1 | web_site | 0.989407 | False | hand-held_computer | 2.139020e-03 | False | menu | 2.115360e-03 | False |
| 1444 | 775733305207554048 | https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg | 1 | long-horned_beetle | 0.613852 | False | ox | 2.947280e-02 | False | rhinoceros_beetle | 2.780610e-02 | False |
| 1445 | 775842724423557120 | https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg | 2 | chow | 0.520022 | True | bath_towel | 2.877470e-02 | False | French_bulldog | 2.599010e-02 | True |
| 1446 | 775898661951791106 | https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg | 1 | golden_retriever | 0.945523 | True | Labrador_retriever | 4.231910e-02 | True | doormat | 3.956260e-03 | False |
| 1447 | 776088319444877312 | https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg | 3 | web_site | 0.999916 | False | pug | 7.657020e-05 | True | menu | 2.164680e-06 | False |
| 1448 | 776113305656188928 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1449 | 776201521193218049 | https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg | 1 | Rottweiler | 0.502228 | True | black-and-tan_coonhound | 1.545940e-01 | True | bloodhound | 1.351760e-01 | True |
| 1450 | 776218204058357768 | https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg | 1 | Samoyed | 0.940326 | True | Pomeranian | 5.552720e-02 | True | keeshond | 2.226350e-03 | True |
| 1451 | 776477788987613185 | https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg | 1 | Labrador_retriever | 0.884839 | True | Chesapeake_Bay_retriever | 5.756510e-02 | True | paintbrush | 5.766080e-03 | False |
| 1452 | 776813020089548800 | https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg | 1 | toy_poodle | 0.516610 | True | miniature_poodle | 2.550330e-01 | True | standard_poodle | 1.689890e-01 | True |
| 1453 | 776819012571455488 | https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg | 3 | Chihuahua | 0.346545 | True | dalmatian | 1.662460e-01 | True | toy_terrier | 1.175020e-01 | True |
| 1454 | 777189768882946048 | https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg | 2 | Chihuahua | 0.988412 | True | Mexican_hairless | 4.177220e-03 | True | hog | 1.506580e-03 | False |
| 1455 | 777621514455814149 | https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg | 1 | chow | 0.999823 | True | Norwich_terrier | 5.644850e-05 | True | Pomeranian | 2.768060e-05 | True |
| 1456 | 777641927919427584 | https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg | 1 | golden_retriever | 0.964929 | True | Labrador_retriever | 1.158370e-02 | True | refrigerator | 7.498620e-03 | False |
| 1457 | 777684233540206592 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1458 | 777885040357281792 | https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg | 1 | Afghan_hound | 0.123529 | True | basset | 1.196820e-01 | True | Siberian_husky | 1.087090e-01 | True |
| 1459 | 778027034220126208 | https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg | 1 | clumber | 0.946718 | True | cocker_spaniel | 1.594990e-02 | True | Lhasa | 6.519110e-03 | True |
| 1460 | 778039087836069888 | https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg | 2 | German_shepherd | 0.717776 | True | malinois | 1.111750e-01 | True | Norwegian_elkhound | 5.880240e-02 | True |
| 1461 | 778286810187399168 | https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg | 1 | Boston_bull | 0.322070 | True | pug | 2.299030e-01 | True | muzzle | 1.014200e-01 | False |
| 1462 | 778383385161035776 | https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg | 1 | collie | 0.345266 | True | borzoi | 3.128230e-01 | True | Border_collie | 2.130110e-01 | True |
| 1463 | 778396591732486144 | https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg | 1 | hippopotamus | 0.581403 | False | doormat | 1.524450e-01 | False | sea_lion | 2.636430e-02 | False |
| 1464 | 778408200802557953 | https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg | 3 | Pembroke | 0.848362 | True | Cardigan | 1.081240e-01 | True | beagle | 1.194170e-02 | True |
| 1465 | 778624900596654080 | https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg | 2 | Airedale | 0.786089 | True | Irish_terrier | 1.214880e-01 | True | Lakeland_terrier | 1.460310e-02 | True |
| 1466 | 778650543019483137 | https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg | 1 | German_shepherd | 0.515699 | True | malinois | 3.002920e-01 | True | kelpie | 8.702230e-02 | True |
| 1467 | 778748913645780993 | https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg | 1 | Staffordshire_bullterrier | 0.351434 | True | boxer | 2.014780e-01 | True | American_Staffordshire_terrier | 1.428380e-01 | True |
| 1468 | 778990705243029504 | https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg | 2 | cocker_spaniel | 0.715351 | True | Labrador_retriever | 2.070560e-01 | True | Chihuahua | 2.851940e-02 | True |
| 1469 | 779056095788752897 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1470 | 779123168116150273 | https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg | 1 | toy_poodle | 0.431080 | True | soft-coated_wheaten_terrier | 6.036490e-02 | True | cocker_spaniel | 5.984540e-02 | True |
| 1471 | 779377524342161408 | https://pbs.twimg.com/ext_tw_video_thumb/77937... | 1 | sundial | 0.170921 | False | cash_machine | 6.035860e-02 | False | maze | 5.498140e-02 | False |
| 1472 | 779834332596887552 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1473 | 780192070812196864 | https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg | 1 | vizsla | 0.144012 | True | mongoose | 9.147360e-02 | False | hatchet | 7.354470e-02 | False |
| 1474 | 780459368902959104 | https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg | 1 | Great_Dane | 0.382491 | True | German_shepherd | 3.120260e-01 | True | bull_mastiff | 3.327190e-02 | True |
| 1475 | 780476555013349377 | https://pbs.twimg.com/tweet_video_thumb/CtTFZZ... | 1 | pug | 0.919255 | True | French_bulldog | 3.235030e-02 | True | bull_mastiff | 2.846790e-02 | True |
| 1476 | 780496263422808064 | https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg | 1 | pug | 0.997310 | True | Brabancon_griffon | 1.185630e-03 | True | French_bulldog | 4.279890e-04 | True |
| 1477 | 780543529827336192 | https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg | 1 | golden_retriever | 0.628312 | True | Labrador_retriever | 3.173650e-01 | True | Tibetan_mastiff | 1.226010e-02 | True |
| 1478 | 780601303617732608 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1479 | 780800785462489090 | https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg | 2 | Siberian_husky | 0.951963 | True | Eskimo_dog | 3.534610e-02 | True | Pembroke | 8.861940e-03 | True |
| 1480 | 780858289093574656 | https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg | 1 | Chesapeake_Bay_retriever | 0.488555 | True | Sussex_spaniel | 2.716550e-01 | True | kelpie | 1.069130e-01 | True |
| 1481 | 780931614150983680 | https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg | 1 | padlock | 0.731564 | False | necklace | 6.546160e-02 | False | chain | 3.646910e-02 | False |
| 1482 | 781163403222056960 | https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg | 1 | Shetland_sheepdog | 0.973841 | True | collie | 2.518760e-02 | True | Border_collie | 2.973110e-04 | True |
| 1483 | 781251288990355457 | https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg | 2 | Mexican_hairless | 0.887771 | True | Italian_greyhound | 3.066640e-02 | True | seat_belt | 2.672980e-02 | False |
| 1484 | 781524693396357120 | https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg | 1 | tennis_ball | 0.994712 | False | Chesapeake_Bay_retriever | 3.522500e-03 | True | Labrador_retriever | 9.214390e-04 | True |
| 1485 | 781661882474196992 | https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg | 1 | Pembroke | 0.438087 | True | golden_retriever | 2.269540e-01 | True | collie | 7.065160e-02 | True |
| 1486 | 781955203444699136 | https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg | 1 | pool_table | 0.179568 | False | dining_table | 1.543960e-01 | False | microwave | 3.369050e-02 | False |
| 1487 | 782021823840026624 | https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg | 1 | golden_retriever | 0.383223 | True | cocker_spaniel | 1.659300e-01 | True | Chesapeake_Bay_retriever | 1.181990e-01 | True |
| 1488 | 782305867769217024 | https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg | 1 | briard | 0.504427 | True | soft-coated_wheaten_terrier | 3.906780e-01 | True | Lhasa | 3.459550e-02 | True |
| 1489 | 782598640137187329 | https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg | 1 | malamute | 0.840871 | True | Tibetan_mastiff | 1.405160e-01 | True | Eskimo_dog | 1.201160e-02 | True |
| 1490 | 782722598790725632 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1491 | 782747134529531904 | https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg | 1 | golden_retriever | 0.560699 | True | otterhound | 1.994820e-01 | True | clumber | 4.068180e-02 | True |
| 1492 | 782969140009107456 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1493 | 783085703974514689 | https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg | 1 | Chesapeake_Bay_retriever | 0.240602 | True | Airedale | 1.640880e-01 | True | boxer | 1.345060e-01 | True |
| 1494 | 783334639985389568 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1495 | 783347506784731136 | https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg | 1 | Cardigan | 0.611525 | True | Pembroke | 3.685660e-01 | True | Chihuahua | 3.329570e-03 | True |
| 1496 | 783391753726550016 | https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg | 4 | Norwegian_elkhound | 0.877130 | True | cairn | 8.624060e-02 | True | keeshond | 1.101910e-02 | True |
| 1497 | 783466772167098368 | https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg | 1 | Chihuahua | 0.789000 | True | miniature_pinscher | 1.159160e-01 | True | toy_terrier | 3.629390e-02 | True |
| 1498 | 783695101801398276 | https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg | 3 | chow | 0.314265 | True | golden_retriever | 3.004350e-01 | True | Australian_terrier | 4.948690e-02 | True |
| 1499 | 783821107061198850 | https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg | 1 | Lakeland_terrier | 0.265659 | True | golden_retriever | 1.964140e-01 | True | standard_poodle | 1.335340e-01 | True |
| 1500 | 783839966405230592 | https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg | 1 | quilt | 0.333739 | False | Siamese_cat | 1.362450e-01 | False | three-toed_sloth | 1.174640e-01 | False |
| 1501 | 784431430411685888 | https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg | 1 | miniature_poodle | 0.744819 | True | toy_poodle | 2.431920e-01 | True | standard_poodle | 1.092020e-02 | True |
| 1502 | 784517518371221505 | https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg | 2 | malamute | 0.757764 | True | Eskimo_dog | 1.512480e-01 | True | Siberian_husky | 8.484020e-02 | True |
| 1503 | 784826020293709826 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1504 | 785170936622350336 | https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg | 2 | seat_belt | 0.891193 | False | Eskimo_dog | 2.749440e-02 | True | Samoyed | 1.953030e-02 | True |
| 1505 | 785264754247995392 | https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg | 1 | teddy | 0.674893 | False | cradle | 5.673960e-02 | False | chow | 5.613700e-02 | True |
| 1506 | 785533386513321988 | https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg | 2 | miniature_pinscher | 0.436023 | True | black-and-tan_coonhound | 2.580490e-01 | True | Rottweiler | 1.452310e-01 | True |
| 1507 | 785639753186217984 | https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg | 1 | porcupine | 0.978042 | False | sea_urchin | 6.106300e-03 | False | echidna | 5.441970e-03 | False |
| 1508 | 785872687017132033 | https://pbs.twimg.com/ext_tw_video_thumb/78587... | 1 | Great_Pyrenees | 0.392108 | True | golden_retriever | 1.983580e-01 | True | Pekinese | 1.433280e-01 | True |
| 1509 | 785927819176054784 | https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg | 1 | teddy | 0.972070 | False | toy_poodle | 8.492620e-03 | True | chow | 2.882710e-03 | True |
| 1510 | 786036967502913536 | https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg | 1 | golden_retriever | 0.993830 | True | cocker_spaniel | 3.142710e-03 | True | Great_Pyrenees | 9.174140e-04 | True |
| 1511 | 786233965241827333 | https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg | 1 | Labrador_retriever | 0.478193 | True | schipperke | 2.248170e-01 | True | Staffordshire_bullterrier | 7.739560e-02 | True |
| 1512 | 786363235746385920 | https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg | 1 | golden_retriever | 0.929266 | True | Labrador_retriever | 6.286670e-02 | True | Saluki | 2.156690e-03 | True |
| 1513 | 786595970293370880 | https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg | 1 | Pembroke | 0.709512 | True | Cardigan | 2.871780e-01 | True | chow | 5.701760e-04 | True |
| 1514 | 786664955043049472 | https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg | 1 | Leonberg | 0.512034 | True | keeshond | 4.648160e-01 | True | Pomeranian | 7.812490e-03 | True |
| 1515 | 786709082849828864 | https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg | 1 | Pomeranian | 0.467321 | True | Persian_cat | 1.229780e-01 | False | chow | 1.026540e-01 | True |
| 1516 | 786963064373534720 | https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg | 1 | golden_retriever | 0.915303 | True | Saluki | 4.621260e-02 | True | Labrador_retriever | 3.750410e-02 | True |
| 1517 | 787322443945877504 | https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg | 1 | seat_belt | 0.747739 | False | golden_retriever | 1.057030e-01 | True | dingo | 1.725680e-02 | False |
| 1518 | 787397959788929025 | https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg | 1 | Chihuahua | 0.900483 | True | toy_terrier | 2.108450e-02 | True | miniature_pinscher | 1.948400e-02 | True |
| 1519 | 787717603741622272 | https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg | 3 | German_shepherd | 0.992339 | True | malinois | 4.920390e-03 | True | kelpie | 8.528020e-04 | True |
| 1520 | 787810552592695296 | https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg | 2 | pug | 0.362835 | True | French_bulldog | 2.218640e-01 | True | English_setter | 8.041830e-02 | True |
| 1521 | 788039637453406209 | https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg | 1 | beach_wagon | 0.362925 | False | minivan | 3.047590e-01 | False | limousine | 1.017020e-01 | False |
| 1522 | 788070120937619456 | https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg | 1 | golden_retriever | 0.735163 | True | Sussex_spaniel | 6.489700e-02 | True | Labrador_retriever | 4.770370e-02 | True |
| 1523 | 788150585577050112 | https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg | 3 | chow | 0.814145 | True | Pomeranian | 1.127040e-01 | True | Chihuahua | 1.588320e-02 | True |
| 1524 | 788178268662984705 | https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg | 2 | Samoyed | 0.735480 | True | Pomeranian | 7.510100e-02 | True | Arctic_fox | 3.607190e-02 | False |
| 1525 | 788412144018661376 | https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg | 1 | golden_retriever | 0.805238 | True | Labrador_retriever | 1.137980e-01 | True | Brittany_spaniel | 3.855870e-02 | True |
| 1526 | 788765914992902144 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1527 | 788908386943430656 | https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg | 1 | remote_control | 0.881538 | False | oscilloscope | 3.551310e-02 | False | golden_retriever | 3.408970e-02 | True |
| 1528 | 789137962068021249 | https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg | 2 | Chihuahua | 0.746135 | True | Pekinese | 7.038340e-02 | True | Pembroke | 4.923690e-02 | True |
| 1529 | 789268448748703744 | https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg | 1 | malamute | 0.812860 | True | Siberian_husky | 1.208530e-01 | True | Eskimo_dog | 2.426930e-02 | True |
| 1530 | 789530877013393408 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1531 | 789599242079838210 | https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg | 2 | Chesapeake_Bay_retriever | 0.878822 | True | beagle | 1.857030e-02 | True | Labrador_retriever | 1.749850e-02 | True |
| 1532 | 789628658055020548 | https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg | 1 | chow | 0.260702 | True | cougar | 8.814270e-02 | False | Pomeranian | 7.988310e-02 | True |
| 1533 | 789986466051088384 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1534 | 790277117346975746 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1535 | 790337589677002753 | https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg | 1 | Pembroke | 0.658808 | True | Cardigan | 1.530960e-01 | True | toy_terrier | 1.022990e-01 | True |
| 1536 | 790581949425475584 | https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg | 2 | refrigerator | 0.998886 | False | malinois | 1.529990e-04 | True | kelpie | 1.308170e-04 | True |
| 1537 | 790698755171364864 | https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg | 1 | Bernese_mountain_dog | 0.996541 | True | EntleBucher | 1.056980e-03 | True | Appenzeller | 9.979070e-04 | True |
| 1538 | 790723298204217344 | https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg | 1 | tub | 0.479477 | False | bathtub | 3.251060e-01 | False | golden_retriever | 7.853050e-02 | True |
| 1539 | 790946055508652032 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1540 | 790987426131050500 | https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg | 1 | cocker_spaniel | 0.349195 | True | flat-coated_retriever | 3.095350e-01 | True | Newfoundland | 1.047680e-01 | True |
| 1541 | 791026214425268224 | https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg | 1 | malamute | 0.375098 | True | jean | 6.936170e-02 | False | keeshond | 5.052760e-02 | True |
| 1542 | 791312159183634433 | https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg | 4 | miniature_pinscher | 0.892925 | True | toy_terrier | 9.552380e-02 | True | Doberman | 3.544260e-03 | True |
| 1543 | 791406955684368384 | https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg | 4 | Pembroke | 0.972629 | True | Cardigan | 2.702590e-02 | True | basenji | 1.525020e-04 | True |
| 1544 | 791672322847637504 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1545 | 792050063153438720 | https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg | 2 | komondor | 0.942856 | True | swab | 5.271520e-02 | False | Tibetan_terrier | 2.743000e-03 | True |
| 1546 | 792394556390137856 | https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg | 2 | cocker_spaniel | 0.746387 | True | Irish_setter | 9.161510e-02 | True | miniature_poodle | 6.107820e-02 | True |
| 1547 | 792773781206999040 | https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg | 1 | Yorkshire_terrier | 0.912804 | True | silky_terrier | 6.782250e-02 | True | Australian_terrier | 4.450690e-03 | True |
| 1548 | 792883833364439040 | https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg | 3 | jack-o'-lantern | 0.999306 | False | basketball | 1.131290e-04 | False | standard_poodle | 8.314510e-05 | True |
| 1549 | 792913359805018113 | https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg | 4 | web_site | 0.226716 | False | lighter | 8.194140e-02 | False | switch | 3.900860e-02 | False |
| 1550 | 793120401413079041 | https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg | 1 | Labrador_retriever | 0.724944 | True | golden_retriever | 1.697440e-01 | True | kuvasz | 3.550230e-02 | True |
| 1551 | 793135492858580992 | https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg | 1 | bakery | 0.737041 | False | saltshaker | 5.239590e-02 | False | teddy | 4.659260e-02 | False |
| 1552 | 793150605191548928 | https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg | 1 | Italian_greyhound | 0.193869 | True | bluetick | 1.603800e-01 | True | standard_poodle | 1.259820e-01 | True |
| 1553 | 793165685325201412 | https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg | 1 | golden_retriever | 0.946224 | True | Labrador_retriever | 3.647660e-02 | True | doormat | 2.352850e-03 | False |
| 1554 | 793180763617361921 | https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg | 1 | Lakeland_terrier | 0.266824 | True | Irish_terrier | 2.187830e-01 | True | Airedale | 1.329600e-01 | True |
| 1555 | 793195938047070209 | https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg | 2 | Labrador_retriever | 0.654762 | True | golden_retriever | 7.410000e-02 | True | Chihuahua | 4.233930e-02 | True |
| 1556 | 793210959003287553 | https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg | 1 | doormat | 0.874431 | False | French_bulldog | 1.875910e-02 | True | Boston_bull | 1.513440e-02 | True |
| 1557 | 793226087023144960 | https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg | 1 | wire-haired_fox_terrier | 0.456047 | True | Lakeland_terrier | 2.734280e-01 | True | English_springer | 8.364330e-02 | True |
| 1558 | 793241302385262592 | https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg | 1 | golden_retriever | 0.559308 | True | Labrador_retriever | 3.902220e-01 | True | cocker_spaniel | 3.631570e-02 | True |
| 1559 | 793256262322548741 | https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg | 1 | basset | 0.207622 | True | Walker_hound | 6.057420e-02 | True | beagle | 4.122050e-02 | True |
| 1560 | 793271401113350145 | https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg | 1 | Siberian_husky | 0.231695 | True | Eskimo_dog | 2.067490e-01 | True | Pembroke | 7.011950e-02 | True |
| 1561 | 793286476301799424 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1562 | 793500921481273345 | https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg | 2 | golden_retriever | 0.326122 | True | Labrador_retriever | 2.199040e-01 | True | Chesapeake_Bay_retriever | 1.633660e-01 | True |
| 1563 | 793601777308463104 | https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg | 1 | miniature_pinscher | 0.538981 | True | Chihuahua | 2.178300e-01 | True | toy_terrier | 8.914870e-02 | True |
| 1564 | 793614319594401792 | https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg | 1 | golden_retriever | 0.705092 | True | Labrador_retriever | 2.197210e-01 | True | kuvasz | 1.596500e-02 | True |
| 1565 | 793845145112371200 | https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg | 1 | Old_English_sheepdog | 0.765277 | True | Bedlington_terrier | 1.127530e-01 | True | Kerry_blue_terrier | 4.766170e-02 | True |
| 1566 | 793962221541933056 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1567 | 794205286408003585 | https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg | 3 | pedestal | 0.662660 | False | fountain | 2.948270e-01 | False | brass | 2.037110e-02 | False |
| 1568 | 794332329137291264 | https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg | 1 | Samoyed | 0.988307 | True | malamute | 4.906350e-03 | True | Great_Pyrenees | 2.901290e-03 | True |
| 1569 | 794355576146903043 | https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg | 1 | cocker_spaniel | 0.500509 | True | golden_retriever | 2.727340e-01 | True | jigsaw_puzzle | 4.147580e-02 | False |
| 1570 | 794926597468000259 | https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg | 1 | teddy | 0.569566 | False | bath_towel | 1.737450e-01 | False | toy_poodle | 3.766180e-02 | True |
| 1571 | 794983741416415232 | https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg | 3 | schipperke | 0.363272 | True | kelpie | 1.970210e-01 | True | Norwegian_elkhound | 1.510240e-01 | True |
| 1572 | 795076730285391872 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1573 | 795400264262053889 | https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg | 2 | golden_retriever | 0.925494 | True | Labrador_retriever | 5.924080e-02 | True | tennis_ball | 4.495340e-03 | False |
| 1574 | 795464331001561088 | https://pbs.twimg.com/ext_tw_video_thumb/79546... | 1 | golden_retriever | 0.193082 | True | Chesapeake_Bay_retriever | 1.579270e-01 | True | soft-coated_wheaten_terrier | 1.246840e-01 | True |
| 1575 | 796031486298386433 | https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg | 1 | golden_retriever | 0.893775 | True | Labrador_retriever | 7.013980e-02 | True | doormat | 8.418530e-03 | False |
| 1576 | 796080075804475393 | https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg | 1 | chow | 0.973846 | True | Tibetan_mastiff | 1.410990e-02 | True | gibbon | 2.358320e-03 | False |
| 1577 | 796116448414461957 | https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg | 1 | Cardigan | 0.700182 | True | Pembroke | 2.607380e-01 | True | papillon | 1.710990e-02 | True |
| 1578 | 796149749086875649 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1579 | 796177847564038144 | https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg | 1 | golden_retriever | 0.600276 | True | Labrador_retriever | 1.407980e-01 | True | seat_belt | 8.735480e-02 | False |
| 1580 | 796387464403357696 | https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg | 1 | Pekinese | 0.461164 | True | Pomeranian | 2.886500e-01 | True | Siamese_cat | 5.242300e-02 | False |
| 1581 | 796484825502875648 | https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg | 1 | cocker_spaniel | 0.116924 | True | seat_belt | 1.075110e-01 | False | Australian_terrier | 9.984340e-02 | True |
| 1582 | 796759840936919040 | https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg | 1 | American_Staffordshire_terrier | 0.463996 | True | Staffordshire_bullterrier | 1.555660e-01 | True | Weimaraner | 1.375870e-01 | True |
| 1583 | 796865951799083009 | https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg | 1 | Cardigan | 0.839129 | True | Boston_bull | 8.069850e-02 | True | Pembroke | 3.450500e-02 | True |
| 1584 | 797236660651966464 | https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg | 2 | collie | 0.767005 | True | Border_collie | 1.008440e-01 | True | kelpie | 4.836810e-02 | True |
| 1585 | 797545162159308800 | https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg | 1 | Pembroke | 0.954089 | True | Cardigan | 3.364390e-02 | True | papillon | 9.735660e-03 | True |
| 1586 | 797971864723324932 | https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg | 1 | American_Staffordshire_terrier | 0.489845 | True | Chihuahua | 3.057600e-01 | True | Staffordshire_bullterrier | 7.279910e-02 | True |
| 1587 | 798209839306514432 | https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg | 1 | Pekinese | 0.524583 | True | Shih-Tzu | 1.029310e-01 | True | Pomeranian | 9.789310e-02 | True |
| 1588 | 798340744599797760 | https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg | 1 | papillon | 0.533180 | True | collie | 1.920310e-01 | True | Border_collie | 1.216260e-01 | True |
| 1589 | 798628517273620480 | https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg | 1 | beagle | 0.636169 | True | Labrador_retriever | 1.192560e-01 | True | golden_retriever | 8.254920e-02 | True |
| 1590 | 798644042770751489 | https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg | 1 | English_springer | 0.403698 | True | Brittany_spaniel | 3.476090e-01 | True | Welsh_springer_spaniel | 1.371860e-01 | True |
| 1591 | 798665375516884993 | https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg | 1 | chow | 0.243529 | True | hamster | 2.271500e-01 | False | Pomeranian | 5.605670e-02 | True |
| 1592 | 798673117451325440 | https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg | 1 | dough | 0.806757 | False | bakery | 2.790660e-02 | False | French_loaf | 1.818890e-02 | False |
| 1593 | 798694562394996736 | https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg | 1 | Chihuahua | 0.615163 | True | Pembroke | 1.595090e-01 | True | basenji | 8.446570e-02 | True |
| 1594 | 798697898615730177 | https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg | 1 | Labrador_retriever | 0.868671 | True | carton | 9.509520e-02 | False | pug | 7.651370e-03 | True |
| 1595 | 798925684722855936 | https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg | 1 | West_Highland_white_terrier | 0.539463 | True | cairn | 1.848970e-01 | True | Norfolk_terrier | 1.630240e-01 | True |
| 1596 | 798933969379225600 | https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg | 1 | Siberian_husky | 0.703224 | True | Eskimo_dog | 2.293510e-01 | True | malamute | 4.435080e-02 | True |
| 1597 | 799063482566066176 | https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg | 2 | Norfolk_terrier | 0.334436 | True | Norwich_terrier | 2.315730e-01 | True | Australian_terrier | 2.142030e-01 | True |
| 1598 | 799297110730567681 | https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg | 1 | malamute | 0.985028 | True | Siberian_husky | 5.834420e-03 | True | Eskimo_dog | 5.442810e-03 | True |
| 1599 | 799422933579902976 | https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg | 1 | miniature_pinscher | 0.583630 | True | redbone | 2.760950e-01 | True | toy_terrier | 1.855010e-02 | True |
| 1600 | 799757965289017345 | https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg | 1 | Border_collie | 0.442534 | True | collie | 2.886840e-01 | True | Shetland_sheepdog | 1.963990e-01 | True |
| 1601 | 799774291445383169 | https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg | 1 | chow | 0.316565 | True | golden_retriever | 2.419290e-01 | True | Pomeranian | 1.575240e-01 | True |
| 1602 | 800018252395122689 | https://pbs.twimg.com/ext_tw_video_thumb/80001... | 1 | vacuum | 0.289485 | False | punching_bag | 2.432970e-01 | False | barbell | 1.436300e-01 | False |
| 1603 | 800141422401830912 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1604 | 800388270626521089 | https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg | 2 | golden_retriever | 0.359860 | True | Pembroke | 1.942070e-01 | True | collie | 1.546030e-01 | True |
| 1605 | 800443802682937345 | https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg | 1 | mousetrap | 0.777468 | False | black_widow | 9.394020e-02 | False | paddlewheel | 1.749190e-02 | False |
| 1606 | 800459316964663297 | https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg | 1 | teddy | 0.311928 | False | ice_bear | 1.846570e-01 | False | Christmas_stocking | 1.732290e-01 | False |
| 1607 | 800513324630806528 | https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg | 1 | Pembroke | 0.828904 | True | Cardigan | 1.673730e-01 | True | Chihuahua | 7.659340e-04 | True |
| 1608 | 800751577355128832 | https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg | 2 | cocker_spaniel | 0.771984 | True | miniature_poodle | 7.665280e-02 | True | toy_poodle | 3.961830e-02 | True |
| 1609 | 801115127852503040 | https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg | 1 | dalmatian | 0.823356 | True | English_setter | 9.460190e-02 | True | bluetick | 2.195340e-02 | True |
| 1610 | 801167903437357056 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1611 | 801285448605831168 | https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg | 1 | minivan | 0.789376 | False | beach_wagon | 8.112500e-02 | False | convertible | 6.453380e-02 | False |
| 1612 | 801538201127157760 | https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg | 1 | Pembroke | 0.550506 | True | Cardigan | 3.066120e-01 | True | Shetland_sheepdog | 5.423000e-02 | True |
| 1613 | 801958328846974976 | https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg | 1 | Staffordshire_bullterrier | 0.327887 | True | American_Staffordshire_terrier | 2.719160e-01 | True | Labrador_retriever | 2.476190e-01 | True |
| 1614 | 802239329049477120 | https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg | 2 | Eskimo_dog | 0.482498 | True | Siberian_husky | 3.357740e-01 | True | malamute | 1.345890e-01 | True |
| 1615 | 802247111496568832 | https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg | 1 | Chihuahua | 0.721188 | True | toy_terrier | 1.129430e-01 | True | kelpie | 5.336450e-02 | True |
| 1616 | 802265048156610565 | https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg | 1 | Labrador_retriever | 0.897162 | True | beagle | 1.689480e-02 | True | Rhodesian_ridgeback | 1.206060e-02 | True |
| 1617 | 802323869084381190 | https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg | 4 | home_theater | 0.765069 | False | television | 2.035780e-01 | False | entertainment_center | 1.864350e-02 | False |
| 1618 | 802572683846291456 | https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg | 1 | golden_retriever | 0.610171 | True | Labrador_retriever | 1.732520e-01 | True | cocker_spaniel | 1.632570e-01 | True |
| 1619 | 802624713319034886 | https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg | 1 | cocker_spaniel | 0.253442 | True | golden_retriever | 1.628500e-01 | True | otterhound | 1.109210e-01 | True |
| 1620 | 802952499103731712 | https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg | 1 | chow | 0.944032 | True | golden_retriever | 1.723980e-02 | True | Pomeranian | 1.208480e-02 | True |
| 1621 | 803276597545603072 | https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg | 1 | Pembroke | 0.457086 | True | chow | 3.078010e-01 | True | golden_retriever | 4.998820e-02 | True |
| 1622 | 803380650405482500 | https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg | 1 | bookcase | 0.890601 | False | entertainment_center | 1.928740e-02 | False | file | 9.489540e-03 | False |
| 1623 | 803638050916102144 | https://pbs.twimg.com/ext_tw_video_thumb/80363... | 1 | Labrador_retriever | 0.372776 | True | golden_retriever | 3.436660e-01 | True | Great_Pyrenees | 6.724230e-02 | True |
| 1624 | 803692223237865472 | https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg | 1 | Lakeland_terrier | 0.530104 | True | Irish_terrier | 1.973140e-01 | True | Airedale | 8.251460e-02 | True |
| 1625 | 803773340896923648 | https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg | 2 | miniature_pinscher | 0.817066 | True | redbone | 5.970650e-02 | True | Irish_terrier | 3.419520e-02 | True |
| 1626 | 804026241225523202 | https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg | 1 | web_site | 0.492709 | False | envelope | 5.056580e-02 | False | guillotine | 1.529690e-02 | False |
| 1627 | 804413760345620481 | https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg | 1 | chow | 0.090341 | True | binoculars | 8.349880e-02 | False | Irish_setter | 7.745560e-02 | True |
| 1628 | 804738756058218496 | https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg | 1 | Tibetan_mastiff | 0.915790 | True | German_shepherd | 6.247970e-02 | True | Leonberg | 8.297490e-03 | True |
| 1629 | 805207613751304193 | https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg | 1 | Pembroke | 0.244705 | True | Rhodesian_ridgeback | 1.804610e-01 | True | Cardigan | 9.466370e-02 | True |
| 1630 | 805487436403003392 | https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg | 3 | shield | 0.587830 | False | barrel | 9.017990e-02 | False | sundial | 6.919860e-02 | False |
| 1631 | 805520635690676224 | https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg | 1 | malinois | 0.643147 | True | German_shepherd | 1.866420e-01 | True | Border_terrier | 1.093450e-01 | True |
| 1632 | 805826884734976000 | https://pbs.twimg.com/ext_tw_video_thumb/80582... | 1 | Siberian_husky | 0.248926 | True | American_Staffordshire_terrier | 9.831330e-02 | True | Eskimo_dog | 8.018850e-02 | True |
| 1633 | 805932879469572096 | https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg | 1 | Norwegian_elkhound | 0.657967 | True | keeshond | 3.191360e-01 | True | Leonberg | 7.946740e-03 | True |
| 1634 | 805958939288408065 | https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg | 1 | Irish_setter | 0.574557 | True | golden_retriever | 3.392510e-01 | True | seat_belt | 4.610820e-02 | False |
| 1635 | 806219024703037440 | https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg | 1 | chow | 0.835102 | True | Pomeranian | 4.078290e-02 | True | Eskimo_dog | 2.127450e-02 | True |
| 1636 | 806242860592926720 | https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg | 2 | Cardigan | 0.593858 | True | Shetland_sheepdog | 1.306110e-01 | True | Pembroke | 1.008420e-01 | True |
| 1637 | 806542213899489280 | https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg | 1 | vizsla | 0.938617 | True | Brittany_spaniel | 3.673890e-02 | True | Chesapeake_Bay_retriever | 3.971490e-03 | True |
| 1638 | 806629075125202948 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1639 | 807010152071229440 | https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg | 1 | golden_retriever | 0.610807 | True | Irish_setter | 2.136420e-01 | True | Welsh_springer_spaniel | 3.188660e-02 | True |
| 1640 | 807059379405148160 | https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg | 1 | seat_belt | 0.474292 | False | golden_retriever | 1.713930e-01 | True | Labrador_retriever | 1.105920e-01 | True |
| 1641 | 807106840509214720 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1642 | 807621403335917568 | https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg | 3 | golden_retriever | 0.873233 | True | cocker_spaniel | 3.369330e-02 | True | chow | 2.040840e-02 | True |
| 1643 | 808001312164028416 | https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg | 1 | Labrador_retriever | 0.730959 | True | Staffordshire_bullterrier | 1.307260e-01 | True | American_Staffordshire_terrier | 2.885260e-02 | True |
| 1644 | 808106460588765185 | https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg | 1 | golden_retriever | 0.426183 | True | Labrador_retriever | 2.574470e-01 | True | Great_Pyrenees | 1.264820e-01 | True |
| 1645 | 808134635716833280 | https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg | 1 | cocker_spaniel | 0.740220 | True | Dandie_Dinmont | 6.160450e-02 | True | English_setter | 4.133140e-02 | True |
| 1646 | 808501579447930884 | https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg | 2 | Airedale | 0.454239 | True | cocker_spaniel | 2.193230e-01 | True | Irish_terrier | 9.319300e-02 | True |
| 1647 | 808733504066486276 | https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg | 1 | seat_belt | 0.779137 | False | toy_poodle | 3.692710e-02 | True | golden_retriever | 1.697250e-02 | True |
| 1648 | 808838249661788160 | https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg | 1 | Rottweiler | 0.369530 | True | miniature_pinscher | 1.948670e-01 | True | kelpie | 1.601040e-01 | True |
| 1649 | 809084759137812480 | https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg | 1 | vizsla | 0.911412 | True | bloodhound | 1.713390e-02 | True | Labrador_retriever | 1.176100e-02 | True |
| 1650 | 809220051211603969 | https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg | 1 | Pomeranian | 0.819511 | True | Samoyed | 1.412410e-01 | True | Pembroke | 1.345520e-02 | True |
| 1651 | 809448704142938112 | https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg | 1 | Greater_Swiss_Mountain_dog | 0.375415 | True | Cardigan | 1.343170e-01 | True | English_springer | 7.369710e-02 | True |
| 1652 | 809808892968534016 | https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg | 1 | Labrador_retriever | 0.861651 | True | golden_retriever | 4.446180e-02 | True | Staffordshire_bullterrier | 1.649670e-02 | True |
| 1653 | 809920764300447744 | https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg | 1 | Norwich_terrier | 0.397163 | True | toy_poodle | 2.745400e-01 | True | miniature_poodle | 1.346670e-01 | True |
| 1654 | 810254108431155201 | https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg | 1 | Staffordshire_bullterrier | 0.292556 | True | American_Staffordshire_terrier | 2.612330e-01 | True | Border_terrier | 6.237540e-02 | True |
| 1655 | 810284430598270976 | https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg | 1 | malamute | 0.620768 | True | Eskimo_dog | 1.583950e-01 | True | Tibetan_mastiff | 2.896170e-02 | True |
| 1656 | 810657578271330305 | https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg | 1 | malamute | 0.753521 | True | Siberian_husky | 1.661510e-01 | True | Eskimo_dog | 6.981080e-02 | True |
| 1657 | 810896069567610880 | https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg | 1 | flat-coated_retriever | 0.820804 | True | Labrador_retriever | 8.231820e-02 | True | curly-coated_retriever | 6.746050e-02 | True |
| 1658 | 810984652412424192 | https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg | 1 | golden_retriever | 0.871342 | True | Tibetan_mastiff | 3.670770e-02 | True | Labrador_retriever | 2.582320e-02 | True |
| 1659 | 811386762094317568 | https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg | 1 | Pembroke | 0.804177 | True | Cardigan | 1.898900e-01 | True | beagle | 1.964750e-03 | True |
| 1660 | 811627233043480576 | https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg | 1 | beagle | 0.396280 | True | Pembroke | 4.956190e-02 | True | wire-haired_fox_terrier | 4.634920e-02 | True |
| 1661 | 811744202451197953 | https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg | 1 | Pekinese | 0.386082 | True | Labrador_retriever | 2.028620e-01 | True | golden_retriever | 1.704870e-01 | True |
| 1662 | 811985624773361665 | https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg | 1 | Staffordshire_bullterrier | 0.610573 | True | French_bulldog | 1.599350e-01 | True | doormat | 5.867210e-02 | False |
| 1663 | 812372279581671427 | https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg | 2 | golden_retriever | 0.784873 | True | cocker_spaniel | 8.778810e-02 | True | Labrador_retriever | 8.327470e-02 | True |
| 1664 | 812466873996607488 | https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg | 1 | bath_towel | 0.099804 | False | pillow | 9.231810e-02 | False | Great_Dane | 7.820550e-02 | True |
| 1665 | 812503143955202048 | https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg | 2 | loupe | 0.546856 | False | web_site | 3.452980e-01 | False | bubble | 1.052790e-02 | False |
| 1666 | 812709060537683968 | https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg | 1 | Irish_setter | 0.326873 | True | golden_retriever | 1.826100e-01 | True | Leonberg | 1.569120e-01 | True |
| 1667 | 812781120811126785 | https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg | 1 | bull_mastiff | 0.989316 | True | boxer | 7.042960e-03 | True | French_bulldog | 1.739610e-03 | True |
| 1668 | 813051746834595840 | https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg | 1 | golden_retriever | 0.914804 | True | Labrador_retriever | 8.355000e-02 | True | kuvasz | 4.532240e-04 | True |
| 1669 | 813066809284972545 | https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg | 1 | toy_terrier | 0.776400 | True | Pembroke | 1.150340e-01 | True | basenji | 4.887300e-02 | True |
| 1670 | 813081950185472002 | https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg | 2 | Doberman | 0.909951 | True | kelpie | 4.264940e-02 | True | miniature_pinscher | 2.300410e-02 | True |
| 1671 | 813096984823349248 | https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg | 1 | Great_Dane | 0.128056 | True | Boston_bull | 1.170030e-01 | True | kelpie | 8.696430e-02 | True |
| 1672 | 813112105746448384 | https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg | 1 | dingo | 0.287369 | False | Pembroke | 1.406820e-01 | True | basenji | 9.081890e-02 | True |
| 1673 | 813127251579564032 | https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg | 1 | Norwegian_elkhound | 0.432416 | True | whippet | 3.742230e-01 | True | Siberian_husky | 3.246260e-02 | True |
| 1674 | 813142292504645637 | https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg | 3 | beagle | 0.848735 | True | Ibizan_hound | 4.460250e-02 | True | Italian_greyhound | 1.861080e-02 | True |
| 1675 | 813157409116065792 | https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg | 2 | Siamese_cat | 0.843911 | False | Pembroke | 7.056710e-02 | True | Cardigan | 4.191600e-02 | True |
| 1676 | 813172488309972993 | https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg | 1 | doormat | 0.954844 | False | golden_retriever | 2.619310e-02 | True | cocker_spaniel | 4.385980e-03 | True |
| 1677 | 813187593374461952 | https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg | 1 | golden_retriever | 0.888181 | True | Labrador_retriever | 4.231190e-02 | True | Saluki | 9.701730e-03 | True |
| 1678 | 813202720496779264 | https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg | 1 | cocker_spaniel | 0.701852 | True | golden_retriever | 1.203450e-01 | True | Labrador_retriever | 3.632020e-02 | True |
| 1679 | 813217897535406080 | https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg | 1 | Samoyed | 0.905972 | True | Pomeranian | 4.803830e-02 | True | West_Highland_white_terrier | 3.566710e-02 | True |
| 1680 | 813800681631023104 | https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg | 1 | malamute | 0.501159 | True | Siberian_husky | 2.287920e-01 | True | Eskimo_dog | 2.003880e-01 | True |
| 1681 | 813812741911748608 | https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg | 1 | French_bulldog | 0.709146 | True | Boston_bull | 2.476210e-01 | True | boxer | 1.885510e-02 | True |
| 1682 | 813910438903693312 | https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg | 1 | Siberian_husky | 0.699355 | True | Eskimo_dog | 2.564330e-01 | True | Norwegian_elkhound | 1.318880e-02 | True |
| 1683 | 813944609378369540 | https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg | 1 | Labrador_retriever | 0.427742 | True | Great_Dane | 1.905030e-01 | True | curly-coated_retriever | 1.464270e-01 | True |
| 1684 | 814153002265309185 | https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg | 1 | golden_retriever | 0.490068 | True | Labrador_retriever | 2.919560e-01 | True | chow | 7.247470e-02 | True |
| 1685 | 814530161257443328 | https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg | 1 | miniature_poodle | 0.626913 | True | toy_poodle | 2.655820e-01 | True | soft-coated_wheaten_terrier | 4.161420e-02 | True |
| 1686 | 814638523311648768 | https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg | 2 | golden_retriever | 0.650814 | True | kuvasz | 5.328100e-02 | True | cocker_spaniel | 3.543960e-02 | True |
| 1687 | 814986499976527872 | https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg | 1 | dalmatian | 0.999828 | True | boxer | 6.780610e-05 | True | American_Staffordshire_terrier | 3.424360e-05 | True |
| 1688 | 815390420867969024 | https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg | 1 | restaurant | 0.279846 | False | toyshop | 9.142940e-02 | False | paper_towel | 4.614740e-02 | False |
| 1689 | 815639385530101762 | https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg | 1 | German_shepherd | 0.817953 | True | Norwegian_elkhound | 1.400070e-01 | True | malinois | 2.482090e-02 | True |
| 1690 | 815736392542261248 | https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg | 3 | Border_collie | 0.548907 | True | Cardigan | 1.785230e-01 | True | collie | 1.463510e-01 | True |
| 1691 | 815966073409433600 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1692 | 815990720817401858 | https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg | 1 | Chihuahua | 0.428756 | True | miniature_pinscher | 1.039120e-01 | True | Staffordshire_bullterrier | 8.895870e-02 | True |
| 1693 | 816014286006976512 | https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg | 1 | English_setter | 0.677408 | True | Border_collie | 5.272400e-02 | True | cocker_spaniel | 4.857190e-02 | True |
| 1694 | 816091915477250048 | https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg | 3 | Pomeranian | 0.967345 | True | Samoyed | 7.397480e-03 | True | papillon | 6.016500e-03 | True |
| 1695 | 816336735214911488 | https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg | 1 | Labrador_retriever | 0.919330 | True | kuvasz | 4.947950e-02 | True | golden_retriever | 1.193420e-02 | True |
| 1696 | 816450570814898180 | https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg | 1 | web_site | 0.352857 | False | envelope | 6.010720e-02 | False | nail | 3.129090e-02 | False |
| 1697 | 816697700272001025 | https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg | 1 | Chihuahua | 0.756992 | True | Pomeranian | 5.284950e-02 | True | Maltese_dog | 4.760780e-02 | True |
| 1698 | 816816676327063552 | https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg | 1 | malamute | 0.668164 | True | Pembroke | 1.050330e-01 | True | Siberian_husky | 7.787500e-02 | True |
| 1699 | 816829038950027264 | https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg | 1 | dishwasher | 0.700466 | False | golden_retriever | 2.457730e-01 | True | chow | 3.901170e-02 | True |
| 1700 | 817056546584727552 | https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg | 1 | kelpie | 0.864415 | True | French_bulldog | 9.745560e-02 | True | German_shepherd | 8.525870e-03 | True |
| 1701 | 817120970343411712 | https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg | 1 | Saluki | 0.568809 | True | Afghan_hound | 2.293520e-01 | True | golden_retriever | 1.571300e-01 | True |
| 1702 | 817171292965273600 | https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg | 1 | golden_retriever | 0.295483 | True | Irish_setter | 1.444310e-01 | True | Chesapeake_Bay_retriever | 7.787900e-02 | True |
| 1703 | 817181837579653120 | https://pbs.twimg.com/ext_tw_video_thumb/81596... | 1 | Tibetan_mastiff | 0.506312 | True | Tibetan_terrier | 2.956900e-01 | True | otterhound | 3.625070e-02 | True |
| 1704 | 817415592588222464 | https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg | 1 | Doberman | 0.806163 | True | black-and-tan_coonhound | 9.738590e-02 | True | miniature_pinscher | 8.599280e-02 | True |
| 1705 | 817423860136083457 | https://pbs.twimg.com/ext_tw_video_thumb/81742... | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1706 | 817536400337801217 | https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg | 2 | pug | 0.971358 | True | French_bulldog | 2.851850e-02 | True | Boston_bull | 8.596980e-05 | True |
| 1707 | 817777686764523521 | https://pbs.twimg.com/ext_tw_video_thumb/81777... | 1 | curly-coated_retriever | 0.733256 | True | flat-coated_retriever | 2.141450e-01 | True | Irish_water_spaniel | 2.976900e-02 | True |
| 1708 | 817827839487737858 | https://pbs.twimg.com/ext_tw_video_thumb/81782... | 1 | cocker_spaniel | 0.387608 | True | golden_retriever | 2.648440e-01 | True | Pekinese | 1.221230e-01 | True |
| 1709 | 818145370475810820 | https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg | 1 | golden_retriever | 0.621931 | True | Labrador_retriever | 3.649970e-01 | True | redbone | 3.971480e-03 | True |
| 1710 | 818259473185828864 | https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg | 1 | miniature_schnauzer | 0.367368 | True | toy_poodle | 1.124790e-01 | True | standard_schnauzer | 9.543400e-02 | True |
| 1711 | 818536468981415936 | https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg | 1 | swing | 0.999403 | False | Welsh_springer_spaniel | 6.229490e-05 | True | bow | 3.046190e-05 | False |
| 1712 | 818588835076603904 | https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg | 1 | Norwegian_elkhound | 0.372202 | True | Chesapeake_Bay_retriever | 1.371870e-01 | True | malamute | 7.143620e-02 | True |
| 1713 | 818614493328580609 | https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg | 4 | Chihuahua | 0.450722 | True | Border_terrier | 2.041770e-01 | True | beagle | 9.277400e-02 | True |
| 1714 | 818627210458333184 | https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg | 1 | Labrador_retriever | 0.384188 | True | beagle | 2.559170e-01 | True | grocery_store | 7.979950e-02 | False |
| 1715 | 819004803107983360 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1716 | 819006400881917954 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1717 | 819015331746349057 | https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg | 4 | prison | 0.907083 | False | palace | 2.008910e-02 | False | umbrella | 7.849540e-03 | False |
| 1718 | 819015337530290176 | https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg | 1 | standard_poodle | 0.351308 | True | toy_poodle | 2.719290e-01 | True | Tibetan_terrier | 9.475920e-02 | True |
| 1719 | 819227688460238848 | https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg | 1 | Border_terrier | 0.482452 | True | German_shepherd | 1.810820e-01 | True | Norwegian_elkhound | 6.525660e-02 | True |
| 1720 | 819347104292290561 | https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg | 3 | Rottweiler | 0.909106 | True | black-and-tan_coonhound | 4.411980e-02 | True | Doberman | 3.183490e-02 | True |
| 1721 | 819588359383371776 | https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg | 1 | Cardigan | 0.547935 | True | basenji | 1.164420e-01 | True | Shetland_sheepdog | 1.016810e-01 | True |
| 1722 | 819711362133872643 | https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg | 2 | acorn_squash | 0.848704 | False | toilet_seat | 4.434840e-02 | False | toy_poodle | 2.200940e-02 | True |
| 1723 | 819924195358416896 | https://pbs.twimg.com/ext_tw_video_thumb/81992... | 1 | bathtub | 0.100896 | False | shower_curtain | 9.186640e-02 | False | tub | 4.917630e-02 | False |
| 1724 | 819952236453363712 | https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg | 1 | American_Staffordshire_terrier | 0.925505 | True | Staffordshire_bullterrier | 3.622150e-02 | True | Italian_greyhound | 2.041190e-02 | True |
| 1725 | 820078625395449857 | https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg | 3 | school_bus | 0.999833 | False | cab | 1.596210e-04 | False | crane | 1.799800e-06 | False |
| 1726 | 820314633777061888 | https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg | 2 | Gordon_setter | 0.940724 | True | black-and-tan_coonhound | 4.204120e-02 | True | Rottweiler | 9.417430e-03 | True |
| 1727 | 820446719150292993 | https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg | 3 | golden_retriever | 0.938048 | True | kuvasz | 2.511950e-02 | True | Labrador_retriever | 2.297730e-02 | True |
| 1728 | 820690176645140481 | https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg | 2 | West_Highland_white_terrier | 0.872064 | True | kuvasz | 5.952590e-02 | True | Samoyed | 3.739960e-02 | True |
| 1729 | 820749716845686786 | https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg | 2 | golden_retriever | 0.838012 | True | Pekinese | 5.673310e-02 | True | Labrador_retriever | 2.394360e-02 | True |
| 1730 | 821044531881721856 | https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg | 1 | Old_English_sheepdog | 0.148020 | True | Airedale | 1.335340e-01 | True | Tibetan_mastiff | 1.209030e-01 | True |
| 1731 | 821107785811234820 | https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg | 1 | Pomeranian | 0.856590 | True | papillon | 3.853650e-02 | True | Yorkshire_terrier | 3.314580e-02 | True |
| 1732 | 821149554670182400 | https://pbs.twimg.com/ext_tw_video_thumb/82114... | 1 | German_shepherd | 0.515933 | True | malinois | 2.036510e-01 | True | Irish_setter | 9.105510e-02 | True |
| 1733 | 821407182352777218 | https://pbs.twimg.com/ext_tw_video_thumb/82140... | 1 | Irish_setter | 0.505496 | True | vizsla | 1.687470e-01 | True | Chesapeake_Bay_retriever | 1.113110e-01 | True |
| 1734 | 821522889702862852 | https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg | 1 | Doberman | 0.763539 | True | black-and-tan_coonhound | 1.366020e-01 | True | miniature_pinscher | 8.765390e-02 | True |
| 1735 | 821765923262631936 | https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg | 1 | golden_retriever | 0.980071 | True | Labrador_retriever | 8.757510e-03 | True | Saluki | 1.805950e-03 | True |
| 1736 | 821813639212650496 | https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg | 1 | Saint_Bernard | 0.995143 | True | Cardigan | 3.043590e-03 | True | English_springer | 1.049550e-03 | True |
| 1737 | 821886076407029760 | https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg | 1 | golden_retriever | 0.266238 | True | cocker_spaniel | 2.233250e-01 | True | Irish_setter | 1.516310e-01 | True |
| 1738 | 822244816520155136 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1739 | 822462944365645825 | https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg | 3 | Pomeranian | 0.960199 | True | Samoyed | 2.305630e-02 | True | Maltese_dog | 8.944880e-03 | True |
| 1740 | 822489057087389700 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1741 | 822610361945911296 | https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg | 1 | cocker_spaniel | 0.664487 | True | Norfolk_terrier | 7.508900e-02 | True | Norwich_terrier | 5.964390e-02 | True |
| 1742 | 822647212903690241 | https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg | 1 | Samoyed | 0.416769 | True | malamute | 2.527060e-01 | True | kuvasz | 1.570280e-01 | True |
| 1743 | 822859134160621569 | https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg | 1 | malinois | 0.332897 | True | Chihuahua | 1.041160e-01 | True | Staffordshire_bullterrier | 4.774500e-02 | True |
| 1744 | 822872901745569793 | https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg | 1 | Lakeland_terrier | 0.196015 | True | Labrador_retriever | 1.603290e-01 | True | Irish_terrier | 6.912620e-02 | True |
| 1745 | 822975315408461824 | https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg | 1 | bathtub | 0.331098 | False | tub | 2.488600e-01 | False | Pembroke | 2.331620e-01 | True |
| 1746 | 823269594223824897 | https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg | 1 | Samoyed | 0.585441 | True | Pomeranian | 1.936540e-01 | True | Arctic_fox | 7.164760e-02 | False |
| 1747 | 823322678127919110 | https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg | 2 | cowboy_boot | 0.990253 | False | Chihuahua | 1.836350e-03 | True | papillon | 1.273900e-03 | True |
| 1748 | 823581115634085888 | https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg | 1 | dingo | 0.280949 | False | German_shepherd | 1.940440e-01 | True | Pembroke | 1.200510e-01 | True |
| 1749 | 823699002998870016 | https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg | 1 | cairn | 0.203999 | True | snorkel | 1.718930e-01 | False | Norfolk_terrier | 1.075430e-01 | True |
| 1750 | 823939628516474880 | https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg | 1 | schipperke | 0.234076 | True | curly-coated_retriever | 1.930930e-01 | True | Labrador_retriever | 9.519660e-02 | True |
| 1751 | 824297048279236611 | https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg | 2 | teddy | 0.588230 | False | jigsaw_puzzle | 2.890960e-02 | False | doormat | 2.225070e-02 | False |
| 1752 | 824325613288833024 | https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg | 1 | Pembroke | 0.990793 | True | Cardigan | 8.919390e-03 | True | basenji | 2.622640e-04 | True |
| 1753 | 824663926340194305 | https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg | 1 | English_setter | 0.526488 | True | golden_retriever | 4.028150e-01 | True | Irish_setter | 3.441780e-02 | True |
| 1754 | 824775126675836928 | https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg | 1 | Border_terrier | 0.610499 | True | malinois | 9.029120e-02 | True | Airedale | 6.862470e-02 | True |
| 1755 | 824796380199809024 | https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg | 2 | gas_pump | 0.676439 | False | harvester | 4.999530e-02 | False | swing | 4.465960e-02 | False |
| 1756 | 825026590719483904 | https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg | 2 | Eskimo_dog | 0.524454 | True | Siberian_husky | 4.676780e-01 | True | malamute | 4.975840e-03 | True |
| 1757 | 825147591692263424 | https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg | 1 | Pekinese | 0.354823 | True | Pomeranian | 2.453900e-01 | True | toy_poodle | 1.365450e-01 | True |
| 1758 | 825535076884762624 | https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg | 1 | Rottweiler | 0.681495 | True | Tibetan_mastiff | 1.479400e-01 | True | black-and-tan_coonhound | 2.452520e-02 | True |
| 1759 | 825829644528148480 | https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg | 2 | Great_Pyrenees | 0.853407 | True | golden_retriever | 5.353130e-02 | True | English_setter | 4.582990e-02 | True |
| 1760 | 825876512159186944 | https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg | 1 | shopping_cart | 0.995941 | False | shopping_basket | 4.056970e-03 | False | mousetrap | 8.832830e-07 | False |
| 1761 | 826115272272650244 | https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg | 1 | tennis_ball | 0.997071 | False | golden_retriever | 2.330850e-03 | True | kuvasz | 2.834720e-04 | True |
| 1762 | 826204788643753985 | https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg | 2 | Labrador_retriever | 0.782058 | True | golden_retriever | 1.565810e-01 | True | soft-coated_wheaten_terrier | 7.275120e-03 | True |
| 1763 | 826240494070030336 | https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg | 1 | French_bulldog | 0.903048 | True | pug | 9.624210e-02 | True | Boston_bull | 2.343640e-04 | True |
| 1764 | 826476773533745153 | https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg | 1 | German_shepherd | 0.741860 | True | Tibetan_mastiff | 1.228120e-01 | True | kelpie | 1.004600e-01 | True |
| 1765 | 826598365270007810 | https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg | 1 | French_bulldog | 0.628119 | True | Siamese_cat | 1.173970e-01 | False | cougar | 8.276490e-02 | False |
| 1766 | 826848821049180160 | https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg | 4 | Great_Pyrenees | 0.858764 | True | golden_retriever | 2.352570e-02 | True | Pekinese | 1.710390e-02 | True |
| 1767 | 826958653328592898 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1768 | 827199976799354881 | https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg | 4 | Great_Dane | 0.869681 | True | American_Staffordshire_terrier | 2.665820e-02 | True | boxer | 1.986610e-02 | True |
| 1769 | 827324948884643840 | https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg | 1 | golden_retriever | 0.352486 | True | toy_poodle | 1.788840e-01 | True | Labrador_retriever | 8.416440e-02 | True |
| 1770 | 827600520311402496 | https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg | 1 | Pembroke | 0.325638 | True | golden_retriever | 3.172350e-01 | True | Labrador_retriever | 1.160870e-01 | True |
| 1771 | 827653905312006145 | https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg | 1 | collie | 0.285555 | True | Border_collie | 2.173060e-01 | True | Saint_Bernard | 1.432450e-01 | True |
| 1772 | 827933404142436356 | https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg | 2 | German_shepherd | 0.806115 | True | Tibetan_mastiff | 1.048310e-01 | True | kelpie | 3.814820e-02 | True |
| 1773 | 828011680017821696 | https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg | 1 | American_Staffordshire_terrier | 0.936662 | True | Staffordshire_bullterrier | 3.299910e-02 | True | bull_mastiff | 1.718340e-02 | True |
| 1774 | 828046555563323392 | https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg | 3 | patio | 0.272972 | False | window_screen | 1.312950e-01 | False | boathouse | 4.639250e-02 | False |
| 1775 | 828372645993398273 | https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg | 1 | malamute | 0.663047 | True | Eskimo_dog | 2.077790e-01 | True | Tibetan_mastiff | 4.094880e-02 | True |
| 1776 | 828376505180889089 | https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg | 1 | American_Staffordshire_terrier | 0.523086 | True | Staffordshire_bullterrier | 1.861680e-01 | True | Chihuahua | 4.208940e-02 | True |
| 1777 | 828381636999917570 | https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg | 1 | Bedlington_terrier | 0.392535 | True | Labrador_retriever | 8.902170e-02 | True | clumber | 8.179980e-02 | True |
| 1778 | 828408677031882754 | https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg | 1 | Weimaraner | 0.133033 | True | Chesapeake_Bay_retriever | 9.222700e-02 | True | American_Staffordshire_terrier | 6.509450e-02 | True |
| 1779 | 828409743546925057 | https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg | 1 | teddy | 0.908457 | False | toy_poodle | 1.803980e-02 | True | standard_poodle | 1.266710e-02 | True |
| 1780 | 828650029636317184 | https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg | 1 | golden_retriever | 0.649209 | True | Chesapeake_Bay_retriever | 1.985600e-01 | True | vizsla | 5.619990e-02 | True |
| 1781 | 828708714936930305 | https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg | 1 | hippopotamus | 0.942911 | False | Mexican_hairless | 8.388370e-03 | True | ice_lolly | 6.206470e-03 | False |
| 1782 | 828770345708580865 | https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg | 1 | seat_belt | 0.765979 | False | Chesapeake_Bay_retriever | 3.389860e-02 | True | polecat | 2.725160e-02 | False |
| 1783 | 829011960981237760 | https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg | 2 | boxer | 0.312221 | True | dalmatian | 2.440400e-01 | True | conch | 1.302730e-01 | False |
| 1784 | 829141528400556032 | https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg | 2 | golden_retriever | 0.573140 | True | cocker_spaniel | 1.111590e-01 | True | gibbon | 9.412690e-02 | False |
| 1785 | 829374341691346946 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1786 | 829449946868879360 | https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg | 1 | Labrador_retriever | 0.315163 | True | golden_retriever | 1.532100e-01 | True | Pekinese | 1.327910e-01 | True |
| 1787 | 829501995190984704 | https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg | 1 | French_bulldog | 0.950851 | True | Pekinese | 1.519960e-02 | True | pug | 1.109360e-02 | True |
| 1788 | 829861396166877184 | https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg | 1 | Border_terrier | 0.394486 | True | Staffordshire_bullterrier | 3.765740e-01 | True | American_Staffordshire_terrier | 3.129160e-02 | True |
| 1789 | 829878982036299777 | https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg | 1 | golden_retriever | 0.617389 | True | Labrador_retriever | 3.370530e-01 | True | tennis_ball | 8.554420e-03 | False |
| 1790 | 830097400375152640 | https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg | 4 | toy_poodle | 0.442713 | True | Pomeranian | 1.420730e-01 | True | Pekinese | 1.257450e-01 | True |
| 1791 | 830583320585068544 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 1792 | 830956169170665475 | https://pbs.twimg.com/ext_tw_video_thumb/83095... | 1 | kuvasz | 0.451516 | True | golden_retriever | 3.171960e-01 | True | English_setter | 1.327590e-01 | True |
| 1793 | 831262627380748289 | https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg | 1 | cocker_spaniel | 0.263323 | True | Brittany_spaniel | 2.005500e-01 | True | doormat | 1.934140e-01 | False |
| 1794 | 831309418084069378 | https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg | 1 | Doberman | 0.369389 | True | kelpie | 1.324490e-01 | True | Labrador_retriever | 7.472730e-02 | True |
| 1795 | 831315979191906304 | https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg | 4 | briard | 0.982755 | True | soft-coated_wheaten_terrier | 9.084350e-03 | True | Bouvier_des_Flandres | 4.692800e-03 | True |
| 1796 | 831322785565769729 | https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg | 1 | Old_English_sheepdog | 0.999715 | True | Tibetan_terrier | 4.629670e-05 | True | guinea_pig | 4.118430e-05 | False |
| 1797 | 831552930092285952 | https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg | 1 | Chihuahua | 0.257415 | True | Pembroke | 1.614420e-01 | True | French_bulldog | 9.214290e-02 | True |
| 1798 | 831650051525054464 | https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg | 1 | Eskimo_dog | 0.530416 | True | Siberian_husky | 1.803350e-01 | True | Norwegian_elkhound | 1.043140e-01 | True |
| 1799 | 831670449226514432 | https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg | 1 | Pembroke | 0.624802 | True | Cardigan | 3.628610e-01 | True | Appenzeller | 3.926210e-03 | True |
| 1800 | 831911600680497154 | https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg | 4 | bloodhound | 0.777562 | True | Great_Dane | 4.741760e-02 | True | Leonberg | 1.794310e-02 | True |
| 1801 | 831939777352105988 | https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg | 1 | Pomeranian | 0.153862 | True | marmot | 9.123390e-02 | False | grey_fox | 9.064410e-02 | False |
| 1802 | 832032802820481025 | https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg | 1 | whippet | 0.601712 | True | Ibizan_hound | 1.526620e-01 | True | Italian_greyhound | 1.350550e-01 | True |
| 1803 | 832040443403784192 | https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg | 1 | miniature_pinscher | 0.796313 | True | Chihuahua | 1.554130e-01 | True | Staffordshire_bullterrier | 3.094330e-02 | True |
| 1804 | 832215726631055365 | https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg | 1 | Afghan_hound | 0.274637 | True | borzoi | 1.422040e-01 | True | doormat | 1.096770e-01 | False |
| 1805 | 832273440279240704 | https://pbs.twimg.com/ext_tw_video_thumb/83227... | 1 | Pembroke | 0.134081 | True | ice_bear | 5.192780e-02 | False | pug | 4.431090e-02 | True |
| 1806 | 832369877331693569 | https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg | 1 | kelpie | 0.504690 | True | German_short-haired_pointer | 1.052080e-01 | True | Staffordshire_bullterrier | 5.433850e-02 | True |
| 1807 | 832397543355072512 | https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg | 1 | Pekinese | 0.988916 | True | Brabancon_griffon | 1.676800e-03 | True | Siamese_cat | 1.125890e-03 | False |
| 1808 | 832636094638288896 | https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg | 1 | Eskimo_dog | 0.525032 | True | Siberian_husky | 2.522380e-01 | True | malamute | 2.168390e-01 | True |
| 1809 | 832757312314028032 | https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg | 2 | Cardigan | 0.160888 | True | Staffordshire_bullterrier | 1.594410e-01 | True | Boston_bull | 1.543680e-01 | True |
| 1810 | 832769181346996225 | https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg | 1 | jersey | 0.895698 | False | sweatshirt | 8.908540e-02 | False | poncho | 2.975220e-03 | False |
| 1811 | 832998151111966721 | https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg | 1 | boxer | 0.539036 | True | French_bulldog | 3.176170e-01 | True | bull_mastiff | 9.392850e-02 | True |
| 1812 | 833124694597443584 | https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg | 3 | Cardigan | 0.710523 | True | kelpie | 1.061020e-01 | True | shopping_cart | 5.547550e-02 | False |
| 1813 | 833479644947025920 | https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg | 3 | golden_retriever | 0.727039 | True | cocker_spaniel | 7.113980e-02 | True | Tibetan_mastiff | 4.869420e-02 | True |
| 1814 | 833722901757046785 | https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg | 1 | West_Highland_white_terrier | 0.918144 | True | Maltese_dog | 2.572070e-02 | True | Lakeland_terrier | 2.021110e-02 | True |
| 1815 | 833826103416520705 | https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg | 1 | Chihuahua | 0.438054 | True | kelpie | 1.497060e-01 | True | Pembroke | 9.648050e-02 | True |
| 1816 | 833863086058651648 | https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg | 1 | kuvasz | 0.494969 | True | Great_Pyrenees | 3.126320e-01 | True | golden_retriever | 1.417360e-01 | True |
| 1817 | 834086379323871233 | https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg | 1 | bath_towel | 0.736759 | False | sleeping_bag | 6.295910e-02 | False | Labrador_retriever | 4.526270e-02 | True |
| 1818 | 834167344700198914 | https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg | 1 | ox | 0.991682 | False | bison | 5.334520e-03 | False | water_buffalo | 1.130250e-03 | False |
| 1819 | 834209720923721728 | https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg | 1 | golden_retriever | 0.754799 | True | Pekinese | 1.978610e-01 | True | Labrador_retriever | 8.654040e-03 | True |
| 1820 | 834458053273591808 | https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg | 1 | Rhodesian_ridgeback | 0.468619 | True | whippet | 1.775310e-01 | True | redbone | 1.065520e-01 | True |
| 1821 | 834574053763584002 | https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg | 1 | toilet_tissue | 0.262936 | False | golden_retriever | 2.265640e-01 | True | bathtub | 7.887900e-02 | False |
| 1822 | 834786237630337024 | https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg | 1 | Border_terrier | 0.156276 | True | Norwegian_elkhound | 1.259120e-01 | True | Boston_bull | 9.662390e-02 | True |
| 1823 | 834931633769889797 | https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg | 1 | ice_bear | 0.330573 | False | soft-coated_wheaten_terrier | 1.964760e-01 | True | Irish_terrier | 7.309650e-02 | True |
| 1824 | 835152434251116546 | https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg | 3 | swing | 0.967066 | False | American_Staffordshire_terrier | 1.273090e-02 | True | Staffordshire_bullterrier | 7.039220e-03 | True |
| 1825 | 835172783151792128 | https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg | 2 | Border_collie | 0.663138 | True | collie | 1.524940e-01 | True | Cardigan | 3.547060e-02 | True |
| 1826 | 835264098648616962 | https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg | 2 | hyena | 0.736871 | False | Chesapeake_Bay_retriever | 8.750330e-02 | True | meerkat | 4.205780e-02 | False |
| 1827 | 835297930240217089 | https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg | 1 | Rottweiler | 0.341276 | True | Border_terrier | 3.362200e-01 | True | Gordon_setter | 4.544830e-02 | True |
| 1828 | 835574547218894849 | https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg | 1 | Staffordshire_bullterrier | 0.610655 | True | muzzle | 1.321380e-01 | False | American_Staffordshire_terrier | 1.095440e-01 | True |
| 1829 | 836001077879255040 | https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg | 4 | Samoyed | 0.963558 | True | white_wolf | 1.984760e-02 | False | malamute | 5.904340e-03 | True |
| 1830 | 836260088725786625 | https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg | 1 | borzoi | 0.564688 | True | ice_bear | 7.826750e-02 | False | Pembroke | 5.791620e-02 | True |
| 1831 | 836380477523124226 | https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg | 1 | wooden_spoon | 0.082489 | False | sliding_door | 6.101650e-02 | False | grand_piano | 5.508610e-02 | False |
| 1832 | 836677758902222849 | https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg | 2 | leopard | 0.797410 | False | jaguar | 9.548660e-02 | False | snow_leopard | 7.969410e-02 | False |
| 1833 | 836753516572119041 | https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg | 1 | mortarboard | 0.936882 | False | academic_gown | 2.081540e-02 | False | schipperke | 1.156350e-02 | True |
| 1834 | 836989968035819520 | https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg | 1 | shopping_cart | 0.572422 | False | shopping_basket | 4.140020e-01 | False | toy_poodle | 5.887300e-03 | True |
| 1835 | 837012587749474308 | https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg | 1 | toilet_tissue | 0.186387 | False | cowboy_hat | 1.585550e-01 | False | sombrero | 1.494700e-01 | False |
| 1836 | 837110210464448512 | https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg | 1 | Siberian_husky | 0.767696 | True | Eskimo_dog | 2.170790e-01 | True | malamute | 1.165680e-02 | True |
| 1837 | 837366284874571778 | https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg | 1 | American_Staffordshire_terrier | 0.660085 | True | Staffordshire_bullterrier | 3.349470e-01 | True | dalmatian | 2.697160e-03 | True |
| 1838 | 837471256429613056 | https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg | 1 | Norwegian_elkhound | 0.976255 | True | keeshond | 1.399020e-02 | True | seat_belt | 2.110540e-03 | False |
| 1839 | 837482249356513284 | https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg | 2 | birdhouse | 0.541196 | False | can_opener | 1.210940e-01 | False | carton | 5.613670e-02 | False |
| 1840 | 837820167694528512 | https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg | 1 | golden_retriever | 0.887625 | True | Labrador_retriever | 6.871750e-02 | True | kuvasz | 3.038680e-02 | True |
| 1841 | 838083903487373313 | https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg | 2 | chow | 0.800975 | True | seat_belt | 1.641330e-01 | False | Pomeranian | 1.798100e-02 | True |
| 1842 | 838476387338051585 | https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg | 3 | Great_Pyrenees | 0.997692 | True | kuvasz | 1.000640e-03 | True | Newfoundland | 4.045560e-04 | True |
| 1843 | 838561493054533637 | https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg | 1 | kelpie | 0.216562 | True | doormat | 1.399940e-01 | False | dalmatian | 1.328200e-01 | True |
| 1844 | 838916489579200512 | https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg | 2 | web_site | 0.993651 | False | monitor | 1.405900e-03 | False | envelope | 1.093090e-03 | False |
| 1845 | 838921590096166913 | https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg | 1 | Border_terrier | 0.664538 | True | Brabancon_griffon | 1.704510e-01 | True | Yorkshire_terrier | 8.782360e-02 | True |
| 1846 | 839239871831150596 | https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg | 3 | Leonberg | 0.927021 | True | Newfoundland | 5.000910e-02 | True | Saint_Bernard | 1.072780e-02 | True |
| 1847 | 839290600511926273 | https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg | 1 | web_site | 0.670892 | False | monitor | 1.015650e-01 | False | screen | 7.530610e-02 | False |
| 1848 | 839549326359670784 | https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg | 1 | swing | 0.393527 | False | Norwich_terrier | 5.248000e-02 | True | Pembroke | 4.990060e-02 | True |
| 1849 | 839990271299457024 | https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg | 2 | Staffordshire_bullterrier | 0.604938 | True | American_Staffordshire_terrier | 3.115400e-01 | True | Boston_bull | 3.715910e-02 | True |
| 1850 | 840268004936019968 | https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg | 3 | Chesapeake_Bay_retriever | 0.863987 | True | Labrador_retriever | 5.263230e-02 | True | kelpie | 3.257360e-02 | True |
| 1851 | 840370681858686976 | https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg | 1 | teapot | 0.981819 | False | cup | 1.402580e-02 | False | coffeepot | 2.420540e-03 | False |
| 1852 | 840632337062862849 | https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg | 1 | golden_retriever | 0.711148 | True | cocker_spaniel | 1.579290e-01 | True | Labrador_retriever | 5.958190e-02 | True |
| 1853 | 840696689258311684 | https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg | 1 | web_site | 0.841768 | False | rule | 7.087310e-03 | False | envelope | 6.820300e-03 | False |
| 1854 | 841077006473256960 | https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg | 1 | Brittany_spaniel | 0.962985 | True | Blenheim_spaniel | 1.482000e-02 | True | clumber | 9.557110e-03 | True |
| 1855 | 841314665196081154 | https://pbs.twimg.com/ext_tw_video_thumb/84131... | 1 | Afghan_hound | 0.903712 | True | Saluki | 3.521500e-02 | True | bloodhound | 2.656550e-02 | True |
| 1856 | 841439858740625411 | https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg | 3 | military_uniform | 0.853684 | False | Labrador_retriever | 4.819990e-02 | True | groenendael | 1.539440e-02 | True |
| 1857 | 841680585030541313 | https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg | 1 | Chihuahua | 0.547401 | True | bow_tie | 1.983610e-01 | False | Pembroke | 5.849250e-02 | True |
| 1858 | 841833993020538882 | https://pbs.twimg.com/ext_tw_video_thumb/81742... | 1 | ice_bear | 0.336200 | False | Samoyed | 2.013580e-01 | True | Eskimo_dog | 1.867890e-01 | True |
| 1859 | 842115215311396866 | https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg | 1 | chow | 0.293493 | True | Newfoundland | 1.813360e-01 | True | schipperke | 1.251520e-01 | True |
| 1860 | 842163532590374912 | https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg | 2 | French_bulldog | 0.891227 | True | soccer_ball | 2.281100e-02 | False | bull_mastiff | 1.285200e-02 | True |
| 1861 | 842535590457499648 | https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg | 1 | Pembroke | 0.685084 | True | Cardigan | 3.146080e-01 | True | basenji | 1.598240e-04 | True |
| 1862 | 842765311967449089 | https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg | 1 | tub | 0.665238 | False | bucket | 1.051660e-01 | False | Labrador_retriever | 2.933990e-02 | True |
| 1863 | 842846295480000512 | https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg | 1 | Labrador_retriever | 0.461076 | True | golden_retriever | 1.549460e-01 | True | Chihuahua | 1.102490e-01 | True |
| 1864 | 842892208864923648 | https://pbs.twimg.com/ext_tw_video_thumb/80710... | 1 | Chihuahua | 0.505370 | True | Pomeranian | 1.203580e-01 | True | toy_terrier | 7.700810e-02 | True |
| 1865 | 843235543001513987 | https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg | 1 | Pembroke | 0.958452 | True | Cardigan | 2.376990e-02 | True | Chihuahua | 5.269360e-03 | True |
| 1866 | 843604394117681152 | https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg | 1 | Labrador_retriever | 0.430583 | True | golden_retriever | 2.635810e-01 | True | Great_Pyrenees | 1.793850e-01 | True |
| 1867 | 843856843873095681 | https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg | 1 | Labrador_retriever | 0.922540 | True | golden_retriever | 7.435780e-02 | True | Great_Pyrenees | 2.324950e-03 | True |
| 1868 | 844223788422217728 | https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg | 1 | Labrador_retriever | 0.719510 | True | Chesapeake_Bay_retriever | 1.220190e-01 | True | Newfoundland | 3.882760e-02 | True |
| 1869 | 844580511645339650 | https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg | 1 | washer | 0.903064 | False | dishwasher | 3.248900e-02 | False | printer | 1.645620e-02 | False |
| 1870 | 844704788403113984 | https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg | 1 | Labrador_retriever | 0.980213 | True | golden_retriever | 7.011670e-03 | True | beagle | 3.146970e-03 | True |
| 1871 | 844973813909606400 | https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg | 1 | Labrador_retriever | 0.742421 | True | golden_retriever | 1.952180e-01 | True | Chihuahua | 1.732010e-02 | True |
| 1872 | 844979544864018432 | https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg | 3 | tennis_ball | 0.999281 | False | racket | 3.700800e-04 | False | Shetland_sheepdog | 1.320680e-04 | True |
| 1873 | 845306882940190720 | https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg | 1 | Irish_water_spaniel | 0.567475 | True | Labrador_retriever | 1.694960e-01 | True | curly-coated_retriever | 1.015180e-01 | True |
| 1874 | 845397057150107648 | https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg | 1 | Dandie_Dinmont | 0.394404 | True | Maltese_dog | 1.865370e-01 | True | West_Highland_white_terrier | 1.819850e-01 | True |
| 1875 | 845677943972139009 | https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg | 1 | chow | 0.808681 | True | groenendael | 1.231410e-01 | True | Newfoundland | 2.214320e-02 | True |
| 1876 | 845812042753855489 | https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg | 1 | Samoyed | 0.979803 | True | chow | 1.592260e-02 | True | white_wolf | 1.302790e-03 | False |
| 1877 | 846042936437604353 | https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg | 1 | golden_retriever | 0.961110 | True | Labrador_retriever | 1.669520e-02 | True | Tibetan_mastiff | 9.081530e-03 | True |
| 1878 | 846153765933735936 | https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg | 1 | giant_schnauzer | 0.346468 | True | flat-coated_retriever | 2.184510e-01 | True | Labrador_retriever | 1.080200e-01 | True |
| 1879 | 846514051647705089 | https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg | 2 | golden_retriever | 0.650003 | True | Leonberg | 6.519920e-02 | True | Norfolk_terrier | 5.295530e-02 | True |
| 1880 | 846874817362120707 | https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg | 2 | Shetland_sheepdog | 0.450539 | True | papillon | 1.879280e-01 | True | collie | 1.400680e-01 | True |
| 1881 | 847116187444137987 | https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg | 1 | white_wolf | 0.128935 | False | American_Staffordshire_terrier | 1.134340e-01 | True | dingo | 8.123140e-02 | False |
| 1882 | 847157206088847362 | https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg | 2 | Staffordshire_bullterrier | 0.219609 | True | American_Staffordshire_terrier | 1.786710e-01 | True | pug | 1.232710e-01 | True |
| 1883 | 847251039262605312 | https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg | 1 | Airedale | 0.495380 | True | Irish_terrier | 3.164560e-01 | True | Lakeland_terrier | 1.585330e-01 | True |
| 1884 | 847606175596138505 | https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg | 1 | Cardigan | 0.413688 | True | Boston_bull | 3.818360e-01 | True | doormat | 6.586780e-02 | False |
| 1885 | 847842811428974592 | https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg | 1 | Bernese_mountain_dog | 0.951337 | True | Greater_Swiss_Mountain_dog | 1.684910e-02 | True | Appenzeller | 1.084920e-02 | True |
| 1886 | 847962785489326080 | https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg | 1 | sea_lion | 0.882654 | False | mink | 6.688020e-02 | False | otter | 2.567870e-02 | False |
| 1887 | 847971574464610304 | https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg | 1 | coffee_mug | 0.633652 | False | cup | 2.733920e-01 | False | toilet_tissue | 6.665580e-02 | False |
| 1888 | 848212111729840128 | https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg | 1 | Bedlington_terrier | 0.333486 | True | Ibizan_hound | 2.457970e-01 | True | wallaby | 1.316470e-01 | False |
| 1889 | 848324959059550208 | https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg | 1 | malamute | 0.544576 | True | Siberian_husky | 2.902680e-01 | True | Eskimo_dog | 1.544210e-01 | True |
| 1890 | 848690551926992896 | https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg | 1 | flat-coated_retriever | 0.823648 | True | Newfoundland | 1.005710e-01 | True | groenendael | 3.830970e-02 | True |
| 1891 | 849051919805034497 | https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg | 1 | fountain | 0.997509 | False | American_black_bear | 1.413120e-03 | False | sundial | 6.811150e-04 | False |
| 1892 | 849336543269576704 | https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg | 1 | patio | 0.521788 | False | prison | 1.495440e-01 | False | restaurant | 2.715260e-02 | False |
| 1893 | 849412302885593088 | https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg | 4 | schipperke | 0.907559 | True | crossword_puzzle | 1.793390e-02 | False | Chihuahua | 1.619070e-02 | True |
| 1894 | 849776966551130114 | https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg | 2 | Chihuahua | 0.292092 | True | toy_terrier | 1.368520e-01 | True | bonnet | 1.031110e-01 | False |
| 1895 | 850019790995546112 | https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg | 3 | Shetland_sheepdog | 0.759907 | True | collie | 1.074050e-01 | True | Pembroke | 5.233530e-02 | True |
| 1896 | 850145622816686080 | https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg | 2 | tennis_ball | 0.714798 | False | kelpie | 1.053900e-01 | True | malinois | 5.855270e-02 | True |
| 1897 | 850380195714523136 | https://pbs.twimg.com/ext_tw_video_thumb/85038... | 1 | Yorkshire_terrier | 0.249012 | True | Maltese_dog | 1.663640e-01 | True | Shih-Tzu | 1.422540e-01 | True |
| 1898 | 850753642995093505 | https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg | 1 | pug | 0.996952 | True | bull_mastiff | 9.959010e-04 | True | French_bulldog | 8.833800e-04 | True |
| 1899 | 851224888060895234 | https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg | 3 | car_mirror | 0.971512 | False | seat_belt | 7.063460e-03 | False | standard_poodle | 5.682650e-03 | True |
| 1900 | 851464819735769094 | https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg | 2 | web_site | 0.919649 | False | menu | 2.630610e-02 | False | crossword_puzzle | 3.481510e-03 | False |
| 1901 | 851591660324737024 | https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg | 1 | Cardigan | 0.394507 | True | Chihuahua | 7.725400e-02 | True | French_bulldog | 7.655880e-02 | True |
| 1902 | 851861385021730816 | https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg | 1 | pencil_box | 0.662183 | False | purse | 6.650550e-02 | False | pillow | 4.472530e-02 | False |
| 1903 | 851953902622658560 | https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg | 1 | Staffordshire_bullterrier | 0.757547 | True | American_Staffordshire_terrier | 1.499500e-01 | True | Chesapeake_Bay_retriever | 4.752270e-02 | True |
| 1904 | 852189679701164033 | https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg | 1 | barrow | 0.423150 | False | Bernese_mountain_dog | 4.153740e-01 | True | EntleBucher | 6.734540e-02 | True |
| 1905 | 852226086759018497 | https://pbs.twimg.com/ext_tw_video_thumb/85222... | 1 | prison | 0.352793 | False | dishwasher | 1.107230e-01 | False | file | 9.411200e-02 | False |
| 1906 | 852311364735569921 | https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg | 1 | barbell | 0.971581 | False | dumbbell | 2.841790e-02 | False | go-kart | 5.595040e-07 | False |
| 1907 | 852553447878664193 | https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg | 1 | bloodhound | 0.186498 | True | Brabancon_griffon | 1.390280e-01 | True | Rottweiler | 1.259400e-01 | True |
| 1908 | 852672615818899456 | https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg | 1 | golden_retriever | 0.711235 | True | otterhound | 6.823470e-02 | True | Sussex_spaniel | 4.656170e-02 | True |
| 1909 | 852912242202992640 | https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg | 1 | Great_Dane | 0.783765 | True | Rhodesian_ridgeback | 1.141470e-01 | True | English_foxhound | 4.643950e-02 | True |
| 1910 | 853299958564483072 | https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg | 1 | grille | 0.652280 | False | beach_wagon | 1.128460e-01 | False | convertible | 8.625230e-02 | False |
| 1911 | 853639147608842240 | https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg | 1 | German_shepherd | 0.509879 | True | malinois | 2.373110e-01 | True | kelpie | 4.691620e-02 | True |
| 1912 | 853760880890318849 | https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg | 1 | miniature_pinscher | 0.292519 | True | Chihuahua | 1.209460e-01 | True | Rottweiler | 1.194900e-01 | True |
| 1913 | 854010172552949760 | https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg | 1 | English_springer | 0.354733 | True | collie | 1.775380e-01 | True | Border_collie | 1.317060e-01 | True |
| 1914 | 854120357044912130 | https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg | 4 | black-and-tan_coonhound | 0.854861 | True | Doberman | 5.079180e-02 | True | bluetick | 2.176170e-02 | True |
| 1915 | 854365224396361728 | https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg | 1 | Pembroke | 0.907080 | True | Cardigan | 8.627200e-02 | True | Chihuahua | 1.413230e-03 | True |
| 1916 | 854482394044301312 | https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg | 1 | Chihuahua | 0.260242 | True | toy_poodle | 1.891580e-01 | True | Labrador_retriever | 1.441950e-01 | True |
| 1917 | 854732716440526848 | https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg | 1 | Pembroke | 0.695548 | True | Cardigan | 5.890170e-02 | True | chow | 2.841060e-02 | True |
| 1918 | 855459453768019968 | https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg | 2 | Blenheim_spaniel | 0.389513 | True | Pekinese | 1.882200e-01 | True | Japanese_spaniel | 8.262820e-02 | True |
| 1919 | 855851453814013952 | https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg | 1 | flat-coated_retriever | 0.321676 | True | Labrador_retriever | 1.151380e-01 | True | groenendael | 9.609970e-02 | True |
| 1920 | 856282028240666624 | https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg | 4 | Chihuahua | 0.876543 | True | Italian_greyhound | 3.296180e-02 | True | Cardigan | 2.077590e-02 | True |
| 1921 | 856526610513747968 | https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg | 1 | Old_English_sheepdog | 0.798481 | True | Tibetan_terrier | 6.060240e-02 | True | standard_poodle | 4.072190e-02 | True |
| 1922 | 856543823941562368 | https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg | 1 | Boston_bull | 0.306910 | True | Siamese_cat | 1.912180e-01 | False | Chihuahua | 1.892880e-01 | True |
| 1923 | 857029823797047296 | https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg | 2 | golden_retriever | 0.968623 | True | Labrador_retriever | 1.032520e-02 | True | Saluki | 4.148420e-03 | True |
| 1924 | 857263160327368704 | https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg | 1 | Samoyed | 0.998021 | True | Pomeranian | 9.216360e-04 | True | keeshond | 3.112610e-04 | True |
| 1925 | 857393404942143489 | https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg | 3 | malamute | 0.841597 | True | Siberian_husky | 7.364350e-02 | True | Eskimo_dog | 7.212860e-02 | True |
| 1926 | 857746408056729600 | https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg | 1 | Labrador_retriever | 0.919832 | True | beagle | 4.351300e-02 | True | golden_retriever | 2.335880e-02 | True |
| 1927 | 857989990357356544 | https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg | 1 | French_bulldog | 0.432580 | True | English_springer | 3.258980e-01 | True | Lakeland_terrier | 4.261790e-02 | True |
| 1928 | 858107933456039936 | https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg | 1 | golden_retriever | 0.863874 | True | Labrador_retriever | 1.592000e-02 | True | doormat | 1.061530e-02 | False |
| 1929 | 858471635011153920 | https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg | 1 | Pembroke | 0.987407 | True | Cardigan | 8.723030e-03 | True | basenji | 3.423730e-03 | True |
| 1930 | 858843525470990336 | https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg | 1 | golden_retriever | 0.578120 | True | Labrador_retriever | 2.860590e-01 | True | bloodhound | 2.691730e-02 | True |
| 1931 | 859074603037188101 | https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg | 1 | revolver | 0.190292 | False | projectile | 1.490640e-01 | False | fountain | 6.604660e-02 | False |
| 1932 | 859196978902773760 | https://pbs.twimg.com/ext_tw_video_thumb/85919... | 1 | Angora | 0.224218 | False | malamute | 2.161630e-01 | True | Persian_cat | 1.283830e-01 | False |
| 1933 | 859607811541651456 | https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg | 1 | golden_retriever | 0.895529 | True | Irish_setter | 2.409930e-02 | True | Labrador_retriever | 1.928540e-02 | True |
| 1934 | 859851578198683649 | https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg | 4 | Labrador_retriever | 0.899086 | True | golden_retriever | 4.709080e-02 | True | kuvasz | 2.320630e-02 | True |
| 1935 | 859924526012018688 | https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg | 1 | French_bulldog | 0.254587 | True | Staffordshire_bullterrier | 1.925580e-01 | True | hog | 1.002700e-01 | False |
| 1936 | 860184849394610176 | https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg | 1 | chimpanzee | 0.267612 | False | gorilla | 1.042930e-01 | False | orangutan | 5.990750e-02 | False |
| 1937 | 860276583193509888 | https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg | 1 | lakeside | 0.312299 | False | dock | 1.598420e-01 | False | canoe | 7.079450e-02 | False |
| 1938 | 860524505164394496 | https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg | 1 | Bedlington_terrier | 0.286558 | True | toy_poodle | 2.351930e-01 | True | Lakeland_terrier | 8.795070e-02 | True |
| 1939 | 860563773140209665 | https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg | 1 | Cardigan | 0.583936 | True | Pembroke | 5.597940e-02 | True | beagle | 4.589570e-02 | True |
| 1940 | 860924035999428608 | https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg | 2 | envelope | 0.933016 | False | oscilloscope | 1.259140e-02 | False | paper_towel | 1.117850e-02 | False |
| 1941 | 861005113778896900 | https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg | 1 | German_shepherd | 0.507951 | True | Pembroke | 1.361130e-01 | True | muzzle | 7.576420e-02 | False |
| 1942 | 861288531465048066 | https://pbs.twimg.com/ext_tw_video_thumb/86128... | 1 | syringe | 0.144712 | False | oxygen_mask | 1.066840e-01 | False | Bouvier_des_Flandres | 8.261020e-02 | True |
| 1943 | 861383897657036800 | https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg | 1 | Cardigan | 0.771008 | True | Pembroke | 1.371740e-01 | True | French_bulldog | 6.330860e-02 | True |
| 1944 | 861769973181624320 | https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg | 2 | Arabian_camel | 0.366248 | False | house_finch | 2.098520e-01 | False | cocker_spaniel | 4.640320e-02 | True |
| 1945 | 862096992088072192 | https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg | 2 | chow | 0.677589 | True | Pomeranian | 2.706480e-01 | True | Pekinese | 3.810990e-02 | True |
| 1946 | 862457590147678208 | https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg | 1 | home_theater | 0.496348 | False | studio_couch | 1.672560e-01 | False | barber_chair | 5.262500e-02 | False |
| 1947 | 862722525377298433 | https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg | 1 | basset | 0.393330 | True | beagle | 2.420340e-01 | True | boxer | 7.769250e-02 | True |
| 1948 | 862831371563274240 | https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg | 2 | Australian_terrier | 0.207281 | True | Irish_terrier | 1.562960e-01 | True | German_shepherd | 1.235360e-01 | True |
| 1949 | 863062471531167744 | https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg | 2 | French_bulldog | 0.935804 | True | pug | 5.957620e-02 | True | boxer | 1.412180e-03 | True |
| 1950 | 863079547188785154 | https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg | 1 | Lakeland_terrier | 0.275242 | True | Airedale | 1.905690e-01 | True | teddy | 1.025950e-01 | False |
| 1951 | 863432100342583297 | https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg | 1 | Staffordshire_bullterrier | 0.690517 | True | French_bulldog | 1.033600e-01 | True | beagle | 7.948940e-02 | True |
| 1952 | 863553081350529029 | https://pbs.twimg.com/ext_tw_video_thumb/86355... | 1 | Eskimo_dog | 0.413330 | True | malamute | 3.476460e-01 | True | Siberian_husky | 1.495360e-01 | True |
| 1953 | 863907417377173506 | https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg | 1 | marmot | 0.358828 | False | meerkat | 1.747030e-01 | False | weasel | 1.234850e-01 | False |
| 1954 | 864197398364647424 | https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg | 4 | golden_retriever | 0.945905 | True | Labrador_retriever | 2.126360e-02 | True | Tibetan_mastiff | 2.049280e-02 | True |
| 1955 | 864279568663928832 | https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg | 1 | bull_mastiff | 0.668613 | True | French_bulldog | 1.805620e-01 | True | Staffordshire_bullterrier | 5.223740e-02 | True |
| 1956 | 864873206498414592 | https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg | 2 | pole | 0.478616 | False | lakeside | 1.141820e-01 | False | wreck | 5.592650e-02 | False |
| 1957 | 865006731092295680 | https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg | 1 | Pembroke | 0.989882 | True | Cardigan | 9.906460e-03 | True | basenji | 1.349520e-04 | True |
| 1958 | 865359393868664832 | https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg | 2 | Chesapeake_Bay_retriever | 0.832435 | True | Labrador_retriever | 1.635510e-01 | True | Weimaraner | 2.770250e-03 | True |
| 1959 | 865718153858494464 | https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg | 1 | golden_retriever | 0.673664 | True | kuvasz | 1.575230e-01 | True | Labrador_retriever | 1.260730e-01 | True |
| 1960 | 866334964761202691 | https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg | 1 | Samoyed | 0.984086 | True | Pomeranian | 7.919280e-03 | True | keeshond | 3.328130e-03 | True |
| 1961 | 866450705531457537 | https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg | 2 | French_bulldog | 0.905334 | True | Boston_bull | 7.805970e-02 | True | pug | 1.770920e-03 | True |
| 1962 | 866686824827068416 | https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg | 1 | flat-coated_retriever | 0.514730 | True | groenendael | 3.064070e-01 | True | curly-coated_retriever | 6.131410e-02 | True |
| 1963 | 867051520902168576 | https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg | 1 | Samoyed | 0.471403 | True | Pekinese | 3.022190e-01 | True | Pomeranian | 1.566060e-01 | True |
| 1964 | 867072653475098625 | https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg | 1 | Blenheim_spaniel | 0.352946 | True | papillon | 2.117660e-01 | True | Pekinese | 1.129520e-01 | True |
| 1965 | 867421006826221569 | https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg | 1 | Eskimo_dog | 0.616457 | True | Siberian_husky | 3.813300e-01 | True | malamute | 1.670220e-03 | True |
| 1966 | 867774946302451713 | https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg | 2 | Border_collie | 0.661953 | True | Cardigan | 1.757180e-01 | True | collie | 8.714240e-02 | True |
| 1967 | 867900495410671616 | https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg | 1 | Labrador_retriever | 0.522644 | True | kuvasz | 3.324610e-01 | True | dalmatian | 3.200810e-02 | True |
| 1968 | 868552278524837888 | https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg | 1 | whippet | 0.378151 | True | Italian_greyhound | 2.759350e-01 | True | American_Staffordshire_terrier | 9.499060e-02 | True |
| 1969 | 868622495443632128 | https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg | 1 | Labrador_retriever | 0.868107 | True | Great_Pyrenees | 6.097300e-02 | True | Saint_Bernard | 3.348890e-02 | True |
| 1970 | 868880397819494401 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1971 | 869227993411051520 | https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg | 1 | Pembroke | 0.664181 | True | Chihuahua | 1.692340e-01 | True | Cardigan | 1.327000e-01 | True |
| 1972 | 869596645499047938 | https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg | 1 | Chihuahua | 0.955156 | True | toy_terrier | 8.053730e-03 | True | muzzle | 6.295630e-03 | False |
| 1973 | 869702957897576449 | https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg | 1 | Pembroke | 0.993449 | True | Cardigan | 6.325080e-03 | True | Chihuahua | 1.775980e-04 | True |
| 1974 | 869772420881756160 | https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg | 1 | Pembroke | 0.980148 | True | Cardigan | 1.927110e-02 | True | malamute | 1.362600e-04 | True |
| 1975 | 870063196459192321 | https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg | 1 | comic_book | 0.534409 | False | envelope | 2.807220e-01 | False | book_jacket | 4.378550e-02 | False |
| 1976 | 870308999962521604 | https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg | 2 | Greater_Swiss_Mountain_dog | 0.622752 | True | Appenzeller | 1.584630e-01 | True | EntleBucher | 1.481150e-01 | True |
| 1977 | 870374049280663552 | https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg | 1 | golden_retriever | 0.841001 | True | Great_Pyrenees | 9.927840e-02 | True | Labrador_retriever | 3.262130e-02 | True |
| 1978 | 870656317836468226 | https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg | 4 | Pembroke | 0.945495 | True | Cardigan | 4.587550e-02 | True | beagle | 4.329430e-03 | True |
| 1979 | 870804317367881728 | https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg | 1 | home_theater | 0.168290 | False | sandbar | 9.804040e-02 | False | television | 7.972940e-02 | False |
| 1980 | 871032628920680449 | https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg | 1 | kelpie | 0.398053 | True | macaque | 6.895490e-02 | False | dingo | 5.060180e-02 | False |
| 1981 | 871515927908634625 | https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg | 2 | komondor | 0.974781 | True | briard | 2.004130e-02 | True | swab | 3.228240e-03 | False |
| 1982 | 871762521631449091 | https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg | 2 | Labrador_retriever | 0.921393 | True | golden_retriever | 6.460800e-02 | True | bloodhound | 3.383370e-03 | True |
| 1983 | 871879754684805121 | https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg | 1 | Shetland_sheepdog | 0.969171 | True | collie | 1.826070e-02 | True | Pomeranian | 8.515340e-03 | True |
| 1984 | 872122724285648897 | https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg | 1 | basketball | 0.808396 | False | pug | 6.673630e-02 | True | dalmatian | 5.456980e-02 | True |
| 1985 | 872261713294495745 | https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg | 2 | Labrador_retriever | 0.972019 | True | flat-coated_retriever | 8.178280e-03 | True | Chesapeake_Bay_retriever | 7.359270e-03 | True |
| 1986 | 872486979161796608 | https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg | 1 | Pembroke | 0.931861 | True | Cardigan | 3.772120e-02 | True | Chihuahua | 1.196670e-02 | True |
| 1987 | 872620804844003328 | https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg | 1 | cocker_spaniel | 0.513191 | True | Sussex_spaniel | 1.590880e-01 | True | standard_poodle | 1.495090e-01 | True |
| 1988 | 872820683541237760 | https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg | 3 | pug | 0.999120 | True | French_bulldog | 5.519200e-04 | True | bull_mastiff | 7.289040e-05 | True |
| 1989 | 872967104147763200 | https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg | 2 | Labrador_retriever | 0.476913 | True | Chesapeake_Bay_retriever | 1.741450e-01 | True | German_short-haired_pointer | 9.286140e-02 | True |
| 1990 | 873213775632977920 | https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg | 1 | vizsla | 0.619782 | True | bloodhound | 3.380690e-01 | True | Chesapeake_Bay_retriever | 1.267630e-02 | True |
| 1991 | 873580283840344065 | https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg | 1 | Newfoundland | 0.678537 | True | Tibetan_mastiff | 2.440220e-01 | True | chow | 4.852950e-02 | True |
| 1992 | 873697596434513921 | https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg | 1 | laptop | 0.153718 | False | French_bulldog | 9.998390e-02 | True | printer | 7.712990e-02 | False |
| 1993 | 874012996292530176 | https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg | 2 | Cardigan | 0.806674 | True | Pembroke | 1.166220e-01 | True | kelpie | 4.918190e-02 | True |
| 1994 | 874057562936811520 | https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg | 1 | flat-coated_retriever | 0.832177 | True | black-and-tan_coonhound | 4.043690e-02 | True | Newfoundland | 2.822830e-02 | True |
| 1995 | 874296783580663808 | https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg | 1 | cocker_spaniel | 0.437216 | True | miniature_poodle | 2.771910e-01 | True | toy_poodle | 1.574020e-01 | True |
| 1996 | 874680097055178752 | https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg | 1 | Labrador_retriever | 0.836052 | True | Staffordshire_bullterrier | 4.706910e-02 | True | beagle | 3.600710e-02 | True |
| 1997 | 875021211251597312 | https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg | 2 | West_Highland_white_terrier | 0.714319 | True | Siberian_husky | 9.191330e-02 | True | Great_Pyrenees | 4.603820e-02 | True |
| 1998 | 875144289856114688 | https://pbs.twimg.com/ext_tw_video_thumb/87514... | 1 | Siberian_husky | 0.245048 | True | Pembroke | 2.237160e-01 | True | dingo | 1.607530e-01 | False |
| 1999 | 875747767867523072 | https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg | 1 | Labrador_retriever | 0.799551 | True | Chesapeake_Bay_retriever | 1.799750e-01 | True | vizsla | 4.617600e-03 | True |
| 2000 | 876120275196170240 | https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg | 1 | Bernese_mountain_dog | 0.534327 | True | Saint_Bernard | 3.463120e-01 | True | Greater_Swiss_Mountain_dog | 9.493270e-02 | True |
| 2001 | 876484053909872640 | https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg | 1 | golden_retriever | 0.874566 | True | Irish_terrier | 3.735420e-02 | True | chow | 1.672360e-02 | True |
| 2002 | 876838120628539392 | https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg | 1 | bloodhound | 0.575751 | True | redbone | 2.409700e-01 | True | Tibetan_mastiff | 8.893480e-02 | True |
| 2003 | 877201837425926144 | https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg | 1 | Pembroke | 0.931120 | True | Cardigan | 6.869820e-02 | True | basenji | 8.173790e-05 | True |
| 2004 | 877316821321428993 | https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg | 1 | Saluki | 0.509967 | True | Italian_greyhound | 9.049730e-02 | True | golden_retriever | 7.940580e-02 | True |
| 2005 | 877556246731214848 | https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg | 1 | basset | 0.995368 | True | Welsh_springer_spaniel | 1.936210e-03 | True | bathtub | 4.679190e-04 | False |
| 2006 | 877611172832227328 | https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg | 1 | Irish_setter | 0.364729 | True | golden_retriever | 2.029070e-01 | True | Irish_terrier | 1.074730e-01 | True |
| 2007 | 877736472329191424 | https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg | 2 | Chesapeake_Bay_retriever | 0.837956 | True | Labrador_retriever | 6.203420e-02 | True | Weimaraner | 4.059910e-02 | True |
| 2008 | 878057613040115712 | https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg | 1 | French_bulldog | 0.839097 | True | Boston_bull | 7.879940e-02 | True | toy_terrier | 1.524340e-02 | True |
| 2009 | 878281511006478336 | https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg | 1 | basset | 0.320420 | True | collie | 2.159750e-01 | True | Appenzeller | 1.285070e-01 | True |
| 2010 | 878776093423087618 | https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg | 2 | Italian_greyhound | 0.734684 | True | whippet | 1.504870e-01 | True | Ibizan_hound | 3.972460e-02 | True |
| 2011 | 879008229531029506 | https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg | 1 | vizsla | 0.960513 | True | miniature_pinscher | 9.430650e-03 | True | American_Staffordshire_terrier | 8.711300e-03 | True |
| 2012 | 879050749262655488 | https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg | 1 | tabby | 0.311861 | False | window_screen | 1.691230e-01 | False | Egyptian_cat | 1.329320e-01 | False |
| 2013 | 879376492567855104 | https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg | 1 | tricycle | 0.663601 | False | Labrador_retriever | 3.349610e-02 | True | Pembroke | 1.882660e-02 | True |
| 2014 | 879415818425184262 | https://pbs.twimg.com/ext_tw_video_thumb/87941... | 1 | English_springer | 0.383404 | True | Boston_bull | 1.349670e-01 | True | Cardigan | 1.104810e-01 | True |
| 2015 | 879492040517615616 | https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg | 1 | German_short-haired_pointer | 0.479896 | True | vizsla | 1.243530e-01 | True | bath_towel | 7.332020e-02 | False |
| 2016 | 879862464715927552 | https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg | 3 | basset | 0.813507 | True | beagle | 1.466540e-01 | True | cocker_spaniel | 9.485020e-03 | True |
| 2017 | 880095782870896641 | https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg | 1 | miniature_pinscher | 0.120298 | True | Rhodesian_ridgeback | 1.063950e-01 | True | beagle | 1.060730e-01 | True |
| 2018 | 880221127280381952 | https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg | 1 | Chihuahua | 0.238525 | True | meerkat | 1.042560e-01 | False | clumber | 5.258030e-02 | True |
| 2019 | 880465832366813184 | https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg | 1 | golden_retriever | 0.913255 | True | Labrador_retriever | 2.632860e-02 | True | cocker_spaniel | 9.370820e-03 | True |
| 2020 | 880872448815771648 | https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg | 1 | Pembroke | 0.791416 | True | Norwich_terrier | 6.139290e-02 | True | Chihuahua | 3.372570e-02 | True |
| 2021 | 880935762899988482 | https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg | 1 | street_sign | 0.251801 | False | umbrella | 1.151230e-01 | False | traffic_light | 6.953380e-02 | False |
| 2022 | 881268444196462592 | https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg | 1 | tusker | 0.473303 | False | Indian_elephant | 2.456460e-01 | False | ibex | 5.566070e-02 | False |
| 2023 | 881536004380872706 | https://pbs.twimg.com/ext_tw_video_thumb/88153... | 1 | Samoyed | 0.281463 | True | Angora | 2.720660e-01 | False | Persian_cat | 1.148540e-01 | False |
| 2024 | 881666595344535552 | https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg | 1 | Saluki | 0.529012 | True | Afghan_hound | 2.500030e-01 | True | golden_retriever | 1.607390e-01 | True |
| 2025 | 881906580714921986 | https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg | 1 | Weimaraner | 0.291539 | True | Chesapeake_Bay_retriever | 2.789660e-01 | True | koala | 1.270170e-01 | False |
| 2026 | 882045870035918850 | https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg | 1 | web_site | 0.949591 | False | dhole | 1.732580e-02 | False | golden_retriever | 6.940630e-03 | True |
| 2027 | 882268110199369728 | https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg | 1 | golden_retriever | 0.762211 | True | Labrador_retriever | 9.898490e-02 | True | cocker_spaniel | 1.719950e-02 | True |
| 2028 | 882627270321602560 | https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg | 1 | Pembroke | 0.542982 | True | Chihuahua | 2.519880e-01 | True | Cardigan | 1.076990e-01 | True |
| 2029 | 882762694511734784 | https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg | 1 | Labrador_retriever | 0.850050 | True | Chesapeake_Bay_retriever | 7.425700e-02 | True | flat-coated_retriever | 1.557940e-02 | True |
| 2030 | 882992080364220416 | https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg | 1 | Eskimo_dog | 0.466778 | True | Siberian_husky | 4.060440e-01 | True | dingo | 7.341440e-02 | False |
| 2031 | 883117836046086144 | https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg | 2 | golden_retriever | 0.949562 | True | Labrador_retriever | 4.594790e-02 | True | kuvasz | 2.470940e-03 | True |
| 2032 | 883360690899218434 | https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg | 1 | chow | 0.987997 | True | Tibetan_mastiff | 7.098720e-03 | True | Newfoundland | 2.140330e-03 | True |
| 2033 | 883482846933004288 | https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg | 1 | golden_retriever | 0.943082 | True | Labrador_retriever | 3.240900e-02 | True | kuvasz | 5.500720e-03 | True |
| 2034 | 883838122936631299 | https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg | 1 | Doberman | 0.610946 | True | miniature_pinscher | 2.996030e-01 | True | kelpie | 6.302030e-02 | True |
| 2035 | 884162670584377345 | https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg | 1 | German_shepherd | 0.707046 | True | malinois | 1.993960e-01 | True | Norwegian_elkhound | 4.914760e-02 | True |
| 2036 | 884441805382717440 | https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg | 1 | Pembroke | 0.993225 | True | Cardigan | 3.216480e-03 | True | Chihuahua | 2.080890e-03 | True |
| 2037 | 884562892145688576 | https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg | 1 | pug | 0.546406 | True | French_bulldog | 4.042910e-01 | True | Brabancon_griffon | 4.400190e-02 | True |
| 2038 | 884876753390489601 | https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg | 1 | chow | 0.822103 | True | Norwich_terrier | 1.060750e-01 | True | Norfolk_terrier | 3.734850e-02 | True |
| 2039 | 884925521741709313 | https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg | 1 | Italian_greyhound | 0.259916 | True | American_Staffordshire_terrier | 1.984510e-01 | True | Staffordshire_bullterrier | 1.277250e-01 | True |
| 2040 | 885167619883638784 | https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg | 4 | malamute | 0.812482 | True | Siberian_husky | 7.171250e-02 | True | Eskimo_dog | 5.576970e-02 | True |
| 2041 | 885311592912609280 | https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg | 1 | Labrador_retriever | 0.908703 | True | seat_belt | 5.709090e-02 | False | pug | 1.193350e-02 | True |
| 2042 | 885528943205470208 | https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg | 1 | pug | 0.369275 | True | Labrador_retriever | 2.658350e-01 | True | kuvasz | 1.346970e-01 | True |
| 2043 | 885984800019947520 | https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg | 1 | Blenheim_spaniel | 0.972494 | True | Shih-Tzu | 6.630120e-03 | True | Bernese_mountain_dog | 6.239150e-03 | True |
| 2044 | 886258384151887873 | https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg | 1 | pug | 0.943575 | True | shower_cap | 2.528560e-02 | False | Siamese_cat | 2.848920e-03 | False |
| 2045 | 886366144734445568 | https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg | 1 | French_bulldog | 0.999201 | True | Chihuahua | 3.611780e-04 | True | Boston_bull | 7.556160e-05 | True |
| 2046 | 886680336477933568 | https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg | 1 | convertible | 0.738995 | False | sports_car | 1.399520e-01 | False | car_wheel | 4.417270e-02 | False |
| 2047 | 886736880519319552 | https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg | 1 | kuvasz | 0.309706 | True | Great_Pyrenees | 1.861360e-01 | True | Dandie_Dinmont | 8.634630e-02 | True |
| 2048 | 886983233522544640 | https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg | 2 | Chihuahua | 0.793469 | True | toy_terrier | 1.435280e-01 | True | can_opener | 3.225290e-02 | False |
| 2049 | 887101392804085760 | https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg | 1 | Samoyed | 0.733942 | True | Eskimo_dog | 3.502950e-02 | True | Staffordshire_bullterrier | 2.970470e-02 | True |
| 2050 | 887343217045368832 | https://pbs.twimg.com/ext_tw_video_thumb/88734... | 1 | Mexican_hairless | 0.330741 | True | sea_lion | 2.756450e-01 | False | Weimaraner | 1.342030e-01 | True |
| 2051 | 887473957103951883 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2052 | 887517139158093824 | https://pbs.twimg.com/ext_tw_video_thumb/88751... | 1 | limousine | 0.130432 | False | tow_truck | 2.917540e-02 | False | shopping_cart | 2.632080e-02 | False |
| 2053 | 887705289381826560 | https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg | 1 | basset | 0.821664 | True | redbone | 8.758150e-02 | True | Weimaraner | 2.623640e-02 | True |
| 2054 | 888078434458587136 | https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg | 1 | French_bulldog | 0.995026 | True | pug | 9.319080e-04 | True | bull_mastiff | 9.032110e-04 | True |
| 2055 | 888202515573088257 | https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg | 2 | Pembroke | 0.809197 | True | Rhodesian_ridgeback | 5.495000e-02 | True | beagle | 3.891480e-02 | True |
| 2056 | 888554962724278272 | https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg | 3 | Siberian_husky | 0.700377 | True | Eskimo_dog | 1.665110e-01 | True | malamute | 1.114110e-01 | True |
| 2057 | 888804989199671297 | https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg | 1 | golden_retriever | 0.469760 | True | Labrador_retriever | 1.841720e-01 | True | English_setter | 7.348170e-02 | True |
| 2058 | 888917238123831296 | https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg | 1 | golden_retriever | 0.714719 | True | Tibetan_mastiff | 1.201840e-01 | True | Labrador_retriever | 1.055060e-01 | True |
| 2059 | 889278841981685760 | https://pbs.twimg.com/ext_tw_video_thumb/88927... | 1 | whippet | 0.626152 | True | borzoi | 1.947420e-01 | True | Saluki | 2.735070e-02 | True |
| 2060 | 889531135344209921 | https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg | 1 | golden_retriever | 0.953442 | True | Labrador_retriever | 1.383410e-02 | True | redbone | 7.957750e-03 | True |
| 2061 | 889638837579907072 | https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg | 1 | French_bulldog | 0.991650 | True | boxer | 2.128640e-03 | True | Staffordshire_bullterrier | 1.498180e-03 | True |
| 2062 | 889665388333682689 | https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg | 1 | Pembroke | 0.966327 | True | Cardigan | 2.735570e-02 | True | basenji | 4.633230e-03 | True |
| 2063 | 889880896479866881 | https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg | 1 | French_bulldog | 0.377417 | True | Labrador_retriever | 1.513170e-01 | True | muzzle | 8.298110e-02 | False |
| 2064 | 890006608113172480 | https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg | 1 | Samoyed | 0.957979 | True | Pomeranian | 1.388350e-02 | True | chow | 8.167480e-03 | True |
| 2065 | 890240255349198849 | https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg | 1 | Pembroke | 0.511319 | True | Cardigan | 4.510380e-01 | True | Chihuahua | 2.924820e-02 | True |
| 2066 | 890609185150312448 | https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg | 1 | Irish_terrier | 0.487574 | True | Irish_setter | 1.930540e-01 | True | Chesapeake_Bay_retriever | 1.181840e-01 | True |
| 2067 | 890729181411237888 | https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg | 2 | Pomeranian | 0.566142 | True | Eskimo_dog | 1.784060e-01 | True | Pembroke | 7.650690e-02 | True |
| 2068 | 890971913173991426 | https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg | 1 | Appenzeller | 0.341703 | True | Border_collie | 1.992870e-01 | True | ice_lolly | 1.935480e-01 | False |
| 2069 | 891087950875897856 | https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg | 1 | Chesapeake_Bay_retriever | 0.425595 | True | Irish_terrier | 1.163170e-01 | True | Indian_elephant | 7.690220e-02 | False |
| 2070 | 891327558926688256 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 | True | English_springer | 2.257700e-01 | True | German_short-haired_pointer | 1.752190e-01 | True |
| 2071 | 891689557279858688 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | paper_towel | 0.170278 | False | Labrador_retriever | 1.680860e-01 | True | spatula | 4.083590e-02 | False |
| 2072 | 891815181378084864 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | Chihuahua | 0.716012 | True | malamute | 7.825300e-02 | True | kelpie | 3.137890e-02 | True |
| 2073 | 892177421306343426 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | Chihuahua | 0.323581 | True | Pekinese | 9.064650e-02 | True | papillon | 6.895690e-02 | True |
| 2074 | 892420643555336193 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | orange | 0.097049 | False | bagel | 8.585110e-02 | False | banana | 7.611000e-02 | False |
image.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2075 entries, 0 to 2074 Data columns (total 12 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2075 non-null int64 1 jpg_url 2075 non-null object 2 img_num 2075 non-null int64 3 p1 2075 non-null object 4 p1_conf 2075 non-null float64 5 p1_dog 2075 non-null bool 6 p2 2075 non-null object 7 p2_conf 2075 non-null float64 8 p2_dog 2075 non-null bool 9 p3 2075 non-null object 10 p3_conf 2075 non-null float64 11 p3_dog 2075 non-null bool dtypes: bool(3), float64(3), int64(2), object(4) memory usage: 152.1+ KB
image.describe()
| tweet_id | img_num | p1_conf | p2_conf | p3_conf | |
|---|---|---|---|---|---|
| count | 2.075000e+03 | 2075.000000 | 2075.000000 | 2.075000e+03 | 2.075000e+03 |
| mean | 7.384514e+17 | 1.203855 | 0.594548 | 1.345886e-01 | 6.032417e-02 |
| std | 6.785203e+16 | 0.561875 | 0.271174 | 1.006657e-01 | 5.090593e-02 |
| min | 6.660209e+17 | 1.000000 | 0.044333 | 1.011300e-08 | 1.740170e-10 |
| 25% | 6.764835e+17 | 1.000000 | 0.364412 | 5.388625e-02 | 1.622240e-02 |
| 50% | 7.119988e+17 | 1.000000 | 0.588230 | 1.181810e-01 | 4.944380e-02 |
| 75% | 7.932034e+17 | 1.000000 | 0.843855 | 1.955655e-01 | 9.180755e-02 |
| max | 8.924206e+17 | 4.000000 | 1.000000 | 4.880140e-01 | 2.734190e-01 |
p2_conf distribution seem to have an issue
sum(image.duplicated())
0
api_df
| tweet_id | retweet_count | favorite_count | |
|---|---|---|---|
| 0 | 892420643555336193 | 7001 | 33801 |
| 1 | 892177421306343426 | 5299 | 29301 |
| 2 | 891815181378084864 | 3477 | 22042 |
| 3 | 891689557279858688 | 7223 | 36920 |
| 4 | 891327558926688256 | 7754 | 35299 |
| 5 | 891087950875897856 | 2599 | 17803 |
| 6 | 890971913173991426 | 1660 | 10360 |
| 7 | 890729181411237888 | 15748 | 56838 |
| 8 | 890609185150312448 | 3617 | 24515 |
| 9 | 890240255349198849 | 6094 | 27949 |
| 10 | 890006608113172480 | 6148 | 27027 |
| 11 | 889880896479866881 | 4163 | 24554 |
| 12 | 889665388333682689 | 8343 | 42029 |
| 13 | 889638837579907072 | 3710 | 23661 |
| 14 | 889531135344209921 | 1878 | 13350 |
| 15 | 889278841981685760 | 4440 | 22107 |
| 16 | 888917238123831296 | 3759 | 25624 |
| 17 | 888804989199671297 | 3533 | 22460 |
| 18 | 888554962724278272 | 2876 | 17309 |
| 19 | 888078434458587136 | 2892 | 19146 |
| 20 | 887705289381826560 | 4532 | 26607 |
| 21 | 887517139158093824 | 9843 | 40711 |
| 22 | 887473957103951883 | 15012 | 60169 |
| 23 | 887343217045368832 | 8811 | 29582 |
| 24 | 887101392804085760 | 4986 | 26970 |
| 25 | 886983233522544640 | 6308 | 30368 |
| 26 | 886736880519319552 | 2628 | 10496 |
| 27 | 886680336477933568 | 3734 | 19726 |
| 28 | 886366144734445568 | 2629 | 18539 |
| 29 | 886267009285017600 | 4 | 105 |
| 30 | 886258384151887873 | 5283 | 24516 |
| 31 | 886054160059072513 | 93 | 0 |
| 32 | 885984800019947520 | 5607 | 28598 |
| 33 | 885528943205470208 | 5323 | 31582 |
| 34 | 885518971528720385 | 3106 | 17998 |
| 35 | 885311592912609280 | 15424 | 0 |
| 36 | 885167619883638784 | 3667 | 19246 |
| 37 | 884925521741709313 | 15013 | 67263 |
| 38 | 884876753390489601 | 4671 | 24374 |
| 39 | 884562892145688576 | 3907 | 21312 |
| 40 | 884441805382717440 | 4787 | 23857 |
| 41 | 884247878851493888 | 16909 | 63283 |
| 42 | 884162670584377345 | 2502 | 17938 |
| 43 | 883838122936631299 | 2860 | 19168 |
| 44 | 883482846933004288 | 8266 | 40191 |
| 45 | 883360690899218434 | 3075 | 19940 |
| 46 | 883117836046086144 | 5531 | 32511 |
| 47 | 882992080364220416 | 3243 | 20974 |
| 48 | 882762694511734784 | 4091 | 24779 |
| 49 | 882627270321602560 | 5062 | 24594 |
| 50 | 882268110199369728 | 9624 | 39186 |
| 51 | 882045870035918850 | 4080 | 25715 |
| 52 | 881906580714921986 | 2852 | 21436 |
| 53 | 881666595344535552 | 8953 | 44534 |
| 54 | 881633300179243008 | 8 | 113 |
| 55 | 881536004380872706 | 13393 | 43430 |
| 56 | 881268444196462592 | 4491 | 20473 |
| 57 | 880935762899988482 | 2332 | 15051 |
| 58 | 880872448815771648 | 3200 | 18710 |
| 59 | 880465832366813184 | 5211 | 25025 |
| 60 | 880221127280381952 | 3463 | 23661 |
| 61 | 880095782870896641 | 3650 | 24328 |
| 62 | 879862464715927552 | 2926 | 19694 |
| 63 | 879674319642796034 | 9 | 282 |
| 64 | 879492040517615616 | 2628 | 20701 |
| 65 | 879415818425184262 | 37428 | 92816 |
| 66 | 879376492567855104 | 2646 | 14854 |
| 67 | 879130579576475649 | 5739 | 0 |
| 68 | 879050749262655488 | 3953 | 19802 |
| 69 | 879008229531029506 | 2240 | 16779 |
| 70 | 878776093423087618 | 3432 | 17127 |
| 71 | 878604707211726852 | 5923 | 26434 |
| 72 | 878404777348136964 | 1076 | 0 |
| 73 | 878316110768087041 | 5524 | 0 |
| 74 | 878281511006478336 | 1076 | 6774 |
| 75 | 878057613040115712 | 5739 | 37147 |
| 76 | 877736472329191424 | 15802 | 69266 |
| 77 | 877611172832227328 | 70 | 0 |
| 78 | 877556246731214848 | 3167 | 19898 |
| 79 | 877316821321428993 | 4346 | 24147 |
| 80 | 877201837425926144 | 4626 | 23857 |
| 81 | 876838120628539392 | 2803 | 18209 |
| 82 | 876537666061221889 | 3970 | 21046 |
| 83 | 876484053909872640 | 1999 | 16559 |
| 84 | 876120275196170240 | 3899 | 24680 |
| 85 | 875747767867523072 | 3580 | 22103 |
| 86 | 875144289856114688 | 4152 | 19417 |
| 87 | 875097192612077568 | 5111 | 24236 |
| 88 | 875021211251597312 | 3971 | 22540 |
| 89 | 874680097055178752 | 3918 | 24605 |
| 90 | 874434818259525634 | 12204 | 0 |
| 91 | 874296783580663808 | 3481 | 22962 |
| 92 | 874057562936811520 | 3376 | 20110 |
| 93 | 874012996292530176 | 8585 | 30124 |
| 94 | 873580283840344065 | 3342 | 21370 |
| 95 | 873337748698140672 | 1330 | 0 |
| 96 | 873213775632977920 | 1330 | 6318 |
| 97 | 872967104147763200 | 4561 | 24056 |
| 98 | 872820683541237760 | 3165 | 13066 |
| 99 | 872620804844003328 | 3067 | 18320 |
| 100 | 872486979161796608 | 7716 | 36083 |
| 101 | 872122724285648897 | 6822 | 30217 |
| 102 | 871879754684805121 | 9246 | 33095 |
| 103 | 871762521631449091 | 2969 | 17882 |
| 104 | 871515927908634625 | 2939 | 17887 |
| 105 | 871166179821445120 | 4891 | 0 |
| 106 | 871102520638267392 | 4675 | 18539 |
| 107 | 871032628920680449 | 3221 | 20150 |
| 108 | 870804317367881728 | 5281 | 29790 |
| 109 | 870726314365509632 | 3 | 105 |
| 110 | 870656317836468226 | 2204 | 10887 |
| 111 | 870374049280663552 | 22741 | 73934 |
| 112 | 870308999962521604 | 3548 | 19475 |
| 113 | 870063196459192321 | 7070 | 32412 |
| 114 | 869772420881756160 | 8694 | 38010 |
| 115 | 869702957897576449 | 5383 | 25049 |
| 116 | 869596645499047938 | 2636 | 14197 |
| 117 | 869227993411051520 | 3199 | 18131 |
| 118 | 868880397819494401 | 12254 | 57946 |
| 119 | 868639477480148993 | 1751 | 0 |
| 120 | 868622495443632128 | 4467 | 23633 |
| 121 | 868552278524837888 | 1751 | 8963 |
| 122 | 867900495410671616 | 3570 | 21595 |
| 123 | 867774946302451713 | 6252 | 30273 |
| 124 | 867421006826221569 | 2113 | 14346 |
| 125 | 867072653475098625 | 101 | 0 |
| 126 | 867051520902168576 | 6782 | 28706 |
| 127 | 866720684873056260 | 4130 | 17868 |
| 128 | 866686824827068416 | 2968 | 17131 |
| 129 | 866450705531457537 | 30187 | 108872 |
| 130 | 866334964761202691 | 12204 | 46609 |
| 131 | 866094527597207552 | 7162 | 0 |
| 132 | 865718153858494464 | 4845 | 22930 |
| 133 | 865359393868664832 | 4289 | 23602 |
| 134 | 865006731092295680 | 6671 | 25040 |
| 135 | 864873206498414592 | 7499 | 28858 |
| 136 | 864279568663928832 | 2581 | 13072 |
| 137 | 864197398364647424 | 7586 | 26639 |
| 138 | 863907417377173506 | 3591 | 18437 |
| 139 | 863553081350529029 | 3632 | 13681 |
| 140 | 863471782782697472 | 2092 | 0 |
| 141 | 863432100342583297 | 4554 | 21308 |
| 142 | 863427515083354112 | 80 | 1961 |
| 143 | 863079547188785154 | 953 | 7896 |
| 144 | 863062471531167744 | 2092 | 7522 |
| 145 | 862831371563274240 | 4459 | 17214 |
| 146 | 862722525377298433 | 3089 | 15333 |
| 147 | 862457590147678208 | 4251 | 18275 |
| 148 | 862096992088072192 | 20000 | 66296 |
| 149 | 861383897657036800 | 9266 | 32298 |
| 150 | 861288531465048066 | 3591 | 15352 |
| 151 | 861005113778896900 | 3337 | 14991 |
| 152 | 860981674716409858 | 1857 | 0 |
| 153 | 860924035999428608 | 678 | 0 |
| 154 | 860563773140209665 | 1857 | 6724 |
| 155 | 860524505164394496 | 4604 | 21254 |
| 156 | 860276583193509888 | 3070 | 16589 |
| 157 | 860184849394610176 | 5123 | 15017 |
| 158 | 860177593139703809 | 26746 | 0 |
| 159 | 859924526012018688 | 3585 | 17641 |
| 160 | 859851578198683649 | 3069 | 13973 |
| 161 | 859607811541651456 | 1364 | 16838 |
| 162 | 859196978902773760 | 26274 | 80556 |
| 163 | 859074603037188101 | 11971 | 30442 |
| 164 | 858860390427611136 | 7083 | 0 |
| 165 | 858843525470990336 | 3027 | 14124 |
| 166 | 858471635011153920 | 4263 | 19494 |
| 167 | 858107933456039936 | 2539 | 14234 |
| 168 | 857989990357356544 | 2267 | 14495 |
| 169 | 857746408056729600 | 9350 | 30820 |
| 170 | 857393404942143489 | 1443 | 5308 |
| 171 | 857263160327368704 | 3979 | 18249 |
| 172 | 857214891891077121 | 16 | 204 |
| 173 | 857062103051644929 | 148 | 0 |
| 174 | 857029823797047296 | 3493 | 17050 |
| 175 | 856543823941562368 | 2548 | 14840 |
| 176 | 856526610513747968 | 1654 | 10829 |
| 177 | 856288084350160898 | 15 | 487 |
| 178 | 856282028240666624 | 5583 | 25240 |
| 179 | 855862651834028034 | 21 | 303 |
| 180 | 855860136149123072 | 853 | 4410 |
| 181 | 855857698524602368 | 1861 | 10861 |
| 182 | 855851453814013952 | 16130 | 41905 |
| 183 | 855818117272018944 | 4815 | 24282 |
| 184 | 855459453768019968 | 7304 | 27111 |
| 185 | 855245323840757760 | 5266 | 0 |
| 186 | 855138241867124737 | 36 | 0 |
| 187 | 854732716440526848 | 5352 | 20679 |
| 188 | 854482394044301312 | 6026 | 26590 |
| 189 | 854365224396361728 | 4153 | 17208 |
| 190 | 854120357044912130 | 6597 | 29232 |
| 191 | 854010172552949760 | 2791 | 14841 |
| 192 | 853760880890318849 | 5117 | 26101 |
| 193 | 853639147608842240 | 8888 | 31565 |
| 194 | 853299958564483072 | 3172 | 14175 |
| 195 | 852936405516943360 | 1789 | 0 |
| 196 | 852912242202992640 | 1601 | 8255 |
| 197 | 852672615818899456 | 1914 | 13652 |
| 198 | 852553447878664193 | 3120 | 14908 |
| 199 | 852311364735569921 | 8886 | 30374 |
| 200 | 852226086759018497 | 6099 | 18363 |
| 201 | 852189679701164033 | 1419 | 10573 |
| 202 | 851591660324737024 | 3125 | 14964 |
| 203 | 851464819735769094 | 6314 | 22275 |
| 204 | 851224888060895234 | 5174 | 19059 |
| 205 | 850753642995093505 | 8088 | 28175 |
| 206 | 850380195714523136 | 2333 | 12087 |
| 207 | 850333567704068097 | 301 | 3193 |
| 208 | 850145622816686080 | 3399 | 15060 |
| 209 | 850019790995546112 | 4375 | 18795 |
| 210 | 849776966551130114 | 6825 | 27924 |
| 211 | 849668094696017920 | 4448 | 0 |
| 212 | 849412302885593088 | 2835 | 14684 |
| 213 | 849336543269576704 | 1693 | 10559 |
| 214 | 849051919805034497 | 7630 | 39044 |
| 215 | 848690551926992896 | 3926 | 23287 |
| 216 | 848324959059550208 | 4156 | 22845 |
| 217 | 848213670039564288 | 646 | 7546 |
| 218 | 848212111729840128 | 2721 | 15047 |
| 219 | 847978865427394560 | 2924 | 0 |
| 220 | 847971574464610304 | 396 | 0 |
| 221 | 847962785489326080 | 4580 | 21755 |
| 222 | 847842811428974592 | 1192 | 5019 |
| 223 | 847617282490613760 | 376 | 6472 |
| 224 | 847606175596138505 | 3093 | 17367 |
| 225 | 847251039262605312 | 3924 | 18988 |
| 226 | 847157206088847362 | 5259 | 18387 |
| 227 | 847116187444137987 | 2878 | 19895 |
| 228 | 846874817362120707 | 3555 | 18642 |
| 229 | 846514051647705089 | 10393 | 41233 |
| 230 | 846505985330044928 | 2764 | 13090 |
| 231 | 846153765933735936 | 8184 | 29119 |
| 232 | 846139713627017216 | 9173 | 28837 |
| 233 | 846042936437604353 | 2591 | 14829 |
| 234 | 845812042753855489 | 7872 | 27051 |
| 235 | 845677943972139009 | 4386 | 23463 |
| 236 | 845397057150107648 | 1622 | 7091 |
| 237 | 845306882940190720 | 4867 | 21641 |
| 238 | 845098359547420673 | 6947 | 0 |
| 239 | 844979544864018432 | 2317 | 12689 |
| 240 | 844973813909606400 | 2860 | 13945 |
| 241 | 844580511645339650 | 2818 | 15306 |
| 242 | 844223788422217728 | 1994 | 12708 |
| 243 | 843981021012017153 | 2701 | 14135 |
| 244 | 843856843873095681 | 4172 | 19981 |
| 245 | 843604394117681152 | 2483 | 15722 |
| 246 | 843235543001513987 | 5420 | 19997 |
| 247 | 842846295480000512 | 3317 | 14226 |
| 248 | 842765311967449089 | 1176 | 6301 |
| 249 | 842535590457499648 | 3187 | 16937 |
| 250 | 842163532590374912 | 5266 | 22758 |
| 251 | 842115215311396866 | 2761 | 13046 |
| 252 | 841833993020538882 | 13592 | 0 |
| 253 | 841680585030541313 | 7165 | 24060 |
| 254 | 841439858740625411 | 3332 | 11749 |
| 255 | 841320156043304961 | 5026 | 18438 |
| 256 | 841314665196081154 | 4241 | 14763 |
| 257 | 841077006473256960 | 4891 | 21352 |
| 258 | 840761248237133825 | 1622 | 0 |
| 259 | 840728873075638272 | 14609 | 0 |
| 260 | 840698636975636481 | 2 | 165 |
| 261 | 840696689258311684 | 891 | 11498 |
| 262 | 840632337062862849 | 1622 | 8437 |
| 263 | 840370681858686976 | 4185 | 15345 |
| 264 | 840268004936019968 | 5219 | 17922 |
| 265 | 839990271299457024 | 2071 | 12544 |
| 266 | 839549326359670784 | 7083 | 25601 |
| 267 | 839290600511926273 | 132 | 0 |
| 268 | 839239871831150596 | 5947 | 25261 |
| 269 | 838952994649550848 | 3666 | 18390 |
| 270 | 838921590096166913 | 1858 | 10429 |
| 271 | 838916489579200512 | 31 | 0 |
| 272 | 838831947270979586 | 10043 | 0 |
| 273 | 838561493054533637 | 1233 | 10255 |
| 274 | 838476387338051585 | 4349 | 20998 |
| 275 | 838201503651401729 | 9207 | 0 |
| 276 | 838150277551247360 | 304 | 1568 |
| 277 | 838085839343206401 | 1 | 133 |
| 278 | 838083903487373313 | 2848 | 16481 |
| 279 | 837820167694528512 | 7162 | 31872 |
| 280 | 837482249356513284 | 408 | 3614 |
| 281 | 837471256429613056 | 2065 | 12004 |
| 282 | 837110210464448512 | 2182 | 15073 |
| 283 | 836989968035819520 | 2117 | 11961 |
| 284 | 836753516572119041 | 4270 | 18151 |
| 285 | 836677758902222849 | 2025 | 11859 |
| 286 | 836648853927522308 | 508 | 0 |
| 287 | 836397794269200385 | 25123 | 0 |
| 288 | 836380477523124226 | 2747 | 13921 |
| 289 | 836260088725786625 | 3984 | 19969 |
| 290 | 836001077879255040 | 3896 | 17909 |
| 291 | 835685285446955009 | 7427 | 0 |
| 292 | 835574547218894849 | 3304 | 16673 |
| 293 | 835536468978302976 | 1545 | 0 |
| 294 | 835309094223372289 | 19190 | 0 |
| 295 | 835297930240217089 | 2745 | 15449 |
| 296 | 835264098648616962 | 1545 | 7243 |
| 297 | 835246439529840640 | 63 | 1991 |
| 298 | 835172783151792128 | 5301 | 24597 |
| 299 | 835152434251116546 | 2763 | 20977 |
| 300 | 834931633769889797 | 1492 | 10118 |
| 301 | 834786237630337024 | 5110 | 20244 |
| 302 | 834574053763584002 | 2316 | 12820 |
| 303 | 834477809192075265 | 9780 | 0 |
| 304 | 834458053273591808 | 1549 | 9041 |
| 305 | 834209720923721728 | 4333 | 19273 |
| 306 | 834167344700198914 | 3366 | 14852 |
| 307 | 834089966724603904 | 1967 | 9461 |
| 308 | 834086379323871233 | 2041 | 12255 |
| 309 | 833863086058651648 | 2214 | 12640 |
| 310 | 833826103416520705 | 3492 | 17092 |
| 311 | 833732339549220864 | 205 | 0 |
| 312 | 833722901757046785 | 2999 | 19713 |
| 313 | 833479644947025920 | 1894 | 14025 |
| 314 | 833124694597443584 | 4448 | 19007 |
| 315 | 832998151111966721 | 2021 | 12449 |
| 316 | 832769181346996225 | 38 | 0 |
| 317 | 832757312314028032 | 3321 | 15864 |
| 318 | 832682457690300417 | 2668 | 11156 |
| 319 | 832645525019123713 | 485 | 2743 |
| 320 | 832636094638288896 | 2564 | 14917 |
| 321 | 832397543355072512 | 2038 | 11254 |
| 322 | 832369877331693569 | 2924 | 16099 |
| 323 | 832273440279240704 | 2149 | 10665 |
| 324 | 832215909146226688 | 5731 | 0 |
| 325 | 832215726631055365 | 8593 | 0 |
| 326 | 832088576586297345 | 2 | 59 |
| 327 | 832040443403784192 | 8830 | 0 |
| 328 | 832032802820481025 | 4306 | 16791 |
| 329 | 831939777352105988 | 5662 | 22494 |
| 330 | 831926988323639298 | 34 | 319 |
| 331 | 831911600680497154 | 5987 | 25874 |
| 332 | 831670449226514432 | 1690 | 9795 |
| 333 | 831650051525054464 | 1789 | 6687 |
| 334 | 831552930092285952 | 2162 | 8459 |
| 335 | 831322785565769729 | 1447 | 8755 |
| 336 | 831315979191906304 | 1039 | 6179 |
| 337 | 831309418084069378 | 2270 | 11107 |
| 338 | 831262627380748289 | 1892 | 11172 |
| 339 | 830956169170665475 | 1375 | 7518 |
| 340 | 830583320585068544 | 15424 | 62480 |
| 341 | 830173239259324417 | 5247 | 0 |
| 342 | 830097400375152640 | 2699 | 9172 |
| 343 | 829878982036299777 | 4610 | 0 |
| 344 | 829861396166877184 | 1793 | 11531 |
| 345 | 829501995190984704 | 9780 | 29909 |
| 346 | 829449946868879360 | 1862 | 9889 |
| 347 | 829141528400556032 | 6772 | 22928 |
| 348 | 829011960981237760 | 15113 | 50297 |
| 349 | 828801551087042563 | 3163 | 0 |
| 350 | 828770345708580865 | 5399 | 24104 |
| 351 | 828708714936930305 | 10337 | 34288 |
| 352 | 828650029636317184 | 1238 | 8959 |
| 353 | 828409743546925057 | 1079 | 6046 |
| 354 | 828408677031882754 | 1187 | 7260 |
| 355 | 828381636999917570 | 2061 | 11878 |
| 356 | 828376505180889089 | 995 | 6990 |
| 357 | 828372645993398273 | 2725 | 11872 |
| 358 | 828361771580813312 | 165 | 2072 |
| 359 | 828046555563323392 | 2657 | 11059 |
| 360 | 828011680017821696 | 1994 | 9777 |
| 361 | 827933404142436356 | 4837 | 18864 |
| 362 | 827653905312006145 | 2793 | 14597 |
| 363 | 827600520311402496 | 864 | 7062 |
| 364 | 827324948884643840 | 2809 | 14947 |
| 365 | 827199976799354881 | 2060 | 10003 |
| 366 | 826958653328592898 | 4610 | 20325 |
| 367 | 826848821049180160 | 9344 | 34049 |
| 368 | 826615380357632002 | 3682 | 0 |
| 369 | 826598799820865537 | 230 | 4861 |
| 370 | 826598365270007810 | 2181 | 9451 |
| 371 | 826476773533745153 | 3892 | 17372 |
| 372 | 826240494070030336 | 2418 | 12520 |
| 373 | 826204788643753985 | 855 | 4601 |
| 374 | 826115272272650244 | 2872 | 14741 |
| 375 | 825876512159186944 | 1736 | 9919 |
| 376 | 825829644528148480 | 2334 | 12022 |
| 377 | 825535076884762624 | 16350 | 53968 |
| 378 | 825147591692263424 | 4183 | 17263 |
| 379 | 825120256414846976 | 1166 | 0 |
| 380 | 825026590719483904 | 1166 | 5910 |
| 381 | 824796380199809024 | 5103 | 0 |
| 382 | 824775126675836928 | 3275 | 14062 |
| 383 | 824663926340194305 | 1643 | 9934 |
| 384 | 824325613288833024 | 9885 | 11178 |
| 385 | 824297048279236611 | 3566 | 14227 |
| 386 | 824025158776213504 | 558 | 4574 |
| 387 | 823939628516474880 | 2537 | 10054 |
| 388 | 823719002937630720 | 10357 | 0 |
| 389 | 823699002998870016 | 2335 | 13210 |
| 390 | 823581115634085888 | 2443 | 12266 |
| 391 | 823333489516937216 | 22 | 662 |
| 392 | 823322678127919110 | 3717 | 14829 |
| 393 | 823269594223824897 | 9226 | 0 |
| 394 | 822975315408461824 | 3199 | 16366 |
| 395 | 822872901745569793 | 39902 | 124068 |
| 396 | 822859134160621569 | 2110 | 12455 |
| 397 | 822647212903690241 | 5954 | 0 |
| 398 | 822610361945911296 | 2734 | 13971 |
| 399 | 822489057087389700 | 5954 | 17104 |
| 400 | 822462944365645825 | 13147 | 26305 |
| 401 | 822244816520155136 | 9226 | 33114 |
| 402 | 822163064745328640 | 4377 | 0 |
| 403 | 821886076407029760 | 2140 | 10678 |
| 404 | 821813639212650496 | 3127 | 0 |
| 405 | 821765923262631936 | 1556 | 7903 |
| 406 | 821522889702862852 | 1630 | 7570 |
| 407 | 821421320206483457 | 5128 | 0 |
| 408 | 821407182352777218 | 3994 | 11102 |
| 409 | 821153421864615936 | 9 | 236 |
| 410 | 821149554670182400 | 1825 | 8108 |
| 411 | 821107785811234820 | 1972 | 9063 |
| 412 | 821044531881721856 | 2126 | 11956 |
| 413 | 820837357901512704 | 6238 | 0 |
| 414 | 820749716845686786 | 9207 | 29832 |
| 415 | 820690176645140481 | 3002 | 11582 |
| 416 | 820494788566847489 | 522 | 0 |
| 417 | 820446719150292993 | 2392 | 0 |
| 418 | 820314633777061888 | 522 | 3157 |
| 419 | 820078625395449857 | 5790 | 18644 |
| 420 | 820013781606658049 | 1082 | 0 |
| 421 | 819952236453363712 | 1082 | 5016 |
| 422 | 819924195358416896 | 4545 | 12235 |
| 423 | 819711362133872643 | 2873 | 12611 |
| 424 | 819588359383371776 | 1868 | 9160 |
| 425 | 819347104292290561 | 1116 | 6841 |
| 426 | 819238181065359361 | 379 | 2138 |
| 427 | 819227688460238848 | 6238 | 21789 |
| 428 | 819015337530290176 | 34533 | 0 |
| 429 | 819015331746349057 | 17793 | 0 |
| 430 | 819006400881917954 | 17793 | 43030 |
| 431 | 819004803107983360 | 34533 | 82669 |
| 432 | 818646164899774465 | 19447 | 0 |
| 433 | 818627210458333184 | 7054 | 21224 |
| 434 | 818614493328580609 | 2353 | 9298 |
| 435 | 818588835076603904 | 5693 | 0 |
| 436 | 818536468981415936 | 2272 | 10275 |
| 437 | 818307523543449600 | 7458 | 0 |
| 438 | 818259473185828864 | 2087 | 10419 |
| 439 | 818145370475810820 | 2369 | 11615 |
| 440 | 817908911860748288 | 740 | 4609 |
| 441 | 817827839487737858 | 25123 | 48633 |
| 442 | 817777686764523521 | 2521 | 10221 |
| 443 | 817536400337801217 | 2728 | 11123 |
| 444 | 817502432452313088 | 3143 | 0 |
| 445 | 817423860136083457 | 13592 | 31854 |
| 446 | 817415592588222464 | 889 | 5294 |
| 447 | 817181837579653120 | 7861 | 0 |
| 448 | 817171292965273600 | 1866 | 8309 |
| 449 | 817120970343411712 | 2412 | 11546 |
| 450 | 817056546584727552 | 1516 | 8134 |
| 451 | 816829038950027264 | 4388 | 0 |
| 452 | 816816676327063552 | 1893 | 9472 |
| 453 | 816697700272001025 | 2055 | 9240 |
| 454 | 816450570814898180 | 7458 | 28704 |
| 455 | 816336735214911488 | 1802 | 8164 |
| 456 | 816091915477250048 | 1987 | 8477 |
| 457 | 816062466425819140 | 944 | 0 |
| 458 | 816014286006976512 | 4877 | 0 |
| 459 | 815990720817401858 | 944 | 4687 |
| 460 | 815966073409433600 | 7861 | 21124 |
| 461 | 815745968457060357 | 3856 | 0 |
| 462 | 815736392542261248 | 2119 | 9305 |
| 463 | 815639385530101762 | 1550 | 7821 |
| 464 | 815390420867969024 | 3571 | 9826 |
| 465 | 814986499976527872 | 1186 | 7254 |
| 466 | 814638523311648768 | 2523 | 10681 |
| 467 | 814578408554463233 | 5458 | 0 |
| 468 | 814530161257443328 | 1739 | 8215 |
| 469 | 814153002265309185 | 8111 | 27240 |
| 470 | 813944609378369540 | 2956 | 0 |
| 471 | 813910438903693312 | 1730 | 8853 |
| 472 | 813812741911748608 | 13029 | 34628 |
| 473 | 813800681631023104 | 1649 | 7881 |
| 474 | 813217897535406080 | 6846 | 17687 |
| 475 | 813202720496779264 | 1704 | 8768 |
| 476 | 813187593374461952 | 4047 | 18825 |
| 477 | 813172488309972993 | 1808 | 8804 |
| 478 | 813157409116065792 | 2066 | 7379 |
| 479 | 813142292504645637 | 2242 | 8082 |
| 480 | 813130366689148928 | 418 | 4258 |
| 481 | 813127251579564032 | 2920 | 11207 |
| 482 | 813112105746448384 | 2567 | 9791 |
| 483 | 813096984823349248 | 3386 | 10029 |
| 484 | 813081950185472002 | 2596 | 9423 |
| 485 | 813066809284972545 | 1827 | 7542 |
| 486 | 813051746834595840 | 6856 | 19918 |
| 487 | 812781120811126785 | 1787 | 7151 |
| 488 | 812709060537683968 | 1352 | 6291 |
| 489 | 812503143955202048 | 1148 | 5739 |
| 490 | 812466873996607488 | 1802 | 7570 |
| 491 | 812372279581671427 | 3423 | 12935 |
| 492 | 811985624773361665 | 1311 | 6912 |
| 493 | 811744202451197953 | 1476 | 7158 |
| 494 | 811647686436880384 | 682 | 5319 |
| 495 | 811627233043480576 | 2851 | 12074 |
| 496 | 811386762094317568 | 5979 | 19860 |
| 497 | 810984652412424192 | 1330 | 5048 |
| 498 | 810896069567610880 | 1644 | 8541 |
| 499 | 810657578271330305 | 2468 | 10429 |
| 500 | 810284430598270976 | 10493 | 33313 |
| 501 | 810254108431155201 | 3163 | 13972 |
| 502 | 809920764300447744 | 3682 | 14780 |
| 503 | 809808892968534016 | 4578 | 0 |
| 504 | 809448704142938112 | 1370 | 6605 |
| 505 | 809220051211603969 | 5247 | 18879 |
| 506 | 809084759137812480 | 3306 | 12562 |
| 507 | 808838249661788160 | 2865 | 9639 |
| 508 | 808733504066486276 | 2034 | 7501 |
| 509 | 808501579447930884 | 2454 | 10756 |
| 510 | 808344865868283904 | 19447 | 40193 |
| 511 | 808134635716833280 | 5516 | 0 |
| 512 | 808106460588765185 | 2068 | 8388 |
| 513 | 808001312164028416 | 3306 | 11848 |
| 514 | 807621403335917568 | 3387 | 13850 |
| 515 | 807106840509214720 | 51643 | 111614 |
| 516 | 807059379405148160 | 6888 | 0 |
| 517 | 807010152071229440 | 3629 | 12474 |
| 518 | 806629075125202948 | 32378 | 70606 |
| 519 | 806620845233815552 | 5144 | 0 |
| 520 | 806576416489959424 | 1823 | 4663 |
| 521 | 806542213899489280 | 2218 | 9737 |
| 522 | 806242860592926720 | 10883 | 0 |
| 523 | 806219024703037440 | 1134 | 6130 |
| 524 | 805958939288408065 | 5012 | 0 |
| 525 | 805932879469572096 | 1802 | 7883 |
| 526 | 805826884734976000 | 1715 | 6243 |
| 527 | 805823200554876929 | 7472 | 0 |
| 528 | 805520635690676224 | 1550 | 5484 |
| 529 | 805487436403003392 | 2380 | 8349 |
| 530 | 805207613751304193 | 1628 | 7483 |
| 531 | 804738756058218496 | 3601 | 12984 |
| 532 | 804475857670639616 | 1891 | 5842 |
| 533 | 804413760345620481 | 3011 | 0 |
| 534 | 804026241225523202 | 15046 | 42063 |
| 535 | 803773340896923648 | 2586 | 9559 |
| 536 | 803692223237865472 | 6927 | 0 |
| 537 | 803638050916102144 | 3885 | 10378 |
| 538 | 803380650405482500 | 1768 | 7395 |
| 539 | 803321560782307329 | 4955 | 0 |
| 540 | 803276597545603072 | 2298 | 9553 |
| 541 | 802952499103731712 | 1874 | 8575 |
| 542 | 802624713319034886 | 2725 | 0 |
| 543 | 802600418706604034 | 1382 | 6764 |
| 544 | 802572683846291456 | 2356 | 8515 |
| 545 | 802323869084381190 | 5478 | 15338 |
| 546 | 802265048156610565 | 1295 | 6622 |
| 547 | 802239329049477120 | 2458 | 8642 |
| 548 | 802185808107208704 | 251 | 0 |
| 549 | 801958328846974976 | 1596 | 7364 |
| 550 | 801854953262350336 | 219 | 1725 |
| 551 | 801538201127157760 | 1951 | 7813 |
| 552 | 801285448605831168 | 771 | 5740 |
| 553 | 801167903437357056 | 5516 | 23172 |
| 554 | 801127390143516673 | 3697 | 0 |
| 555 | 801115127852503040 | 1985 | 7676 |
| 556 | 800859414831898624 | 91 | 647 |
| 557 | 800855607700029440 | 1516 | 0 |
| 558 | 800751577355128832 | 2634 | 10088 |
| 559 | 800513324630806528 | 2830 | 12493 |
| 560 | 800459316964663297 | 2060 | 9042 |
| 561 | 800443802682937345 | 4021 | 0 |
| 562 | 800388270626521089 | 2637 | 10617 |
| 563 | 800188575492947969 | 3695 | 0 |
| 564 | 800141422401830912 | 2392 | 14511 |
| 565 | 800018252395122689 | 12314 | 26895 |
| 566 | 799774291445383169 | 4370 | 0 |
| 567 | 799757965289017345 | 2002 | 7976 |
| 568 | 799422933579902976 | 1800 | 7684 |
| 569 | 799308762079035393 | 5087 | 0 |
| 570 | 799297110730567681 | 2565 | 9384 |
| 571 | 799063482566066176 | 2341 | 7692 |
| 572 | 798933969379225600 | 4160 | 12426 |
| 573 | 798925684722855936 | 1362 | 7155 |
| 574 | 798705661114773508 | 6217 | 0 |
| 575 | 798701998996647937 | 7245 | 0 |
| 576 | 798697898615730177 | 6102 | 0 |
| 577 | 798694562394996736 | 4640 | 0 |
| 578 | 798686750113755136 | 2180 | 0 |
| 579 | 798682547630837760 | 4432 | 0 |
| 580 | 798673117451325440 | 5222 | 0 |
| 581 | 798665375516884993 | 3677 | 0 |
| 582 | 798644042770751489 | 1746 | 0 |
| 583 | 798628517273620480 | 1865 | 0 |
| 584 | 798585098161549313 | 5274 | 0 |
| 585 | 798576900688019456 | 5484 | 0 |
| 586 | 798340744599797760 | 3137 | 0 |
| 587 | 798209839306514432 | 2422 | 9929 |
| 588 | 797971864723324932 | 2891 | 10955 |
| 589 | 797545162159308800 | 4617 | 13882 |
| 590 | 797236660651966464 | 6163 | 18939 |
| 591 | 797165961484890113 | 24 | 212 |
| 592 | 796904159865868288 | 8357 | 0 |
| 593 | 796865951799083009 | 1828 | 7314 |
| 594 | 796759840936919040 | 2834 | 11209 |
| 595 | 796563435802726400 | 6739 | 0 |
| 596 | 796484825502875648 | 1652 | 7187 |
| 597 | 796387464403357696 | 3892 | 10467 |
| 598 | 796177847564038144 | 13372 | 0 |
| 599 | 796149749086875649 | 13372 | 30530 |
| 600 | 796125600683540480 | 1684 | 4739 |
| 601 | 796116448414461957 | 2252 | 8640 |
| 602 | 796080075804475393 | 2166 | 8024 |
| 603 | 796031486298386433 | 3500 | 10273 |
| 604 | 795464331001561088 | 21973 | 46798 |
| 605 | 795400264262053889 | 2684 | 9519 |
| 606 | 795076730285391872 | 5103 | 15347 |
| 607 | 794983741416415232 | 3156 | 0 |
| 608 | 794926597468000259 | 2159 | 9680 |
| 609 | 794355576146903043 | 9661 | 0 |
| 610 | 794332329137291264 | 2537 | 9133 |
| 611 | 794205286408003585 | 3112 | 8775 |
| 612 | 793962221541933056 | 4578 | 15907 |
| 613 | 793845145112371200 | 1746 | 8771 |
| 614 | 793614319594401792 | 2925 | 0 |
| 615 | 793601777308463104 | 1518 | 7579 |
| 616 | 793500921481273345 | 2235 | 10123 |
| 617 | 793286476301799424 | 8593 | 23355 |
| 618 | 793271401113350145 | 2248 | 8254 |
| 619 | 793256262322548741 | 7805 | 18932 |
| 620 | 793241302385262592 | 3078 | 9990 |
| 621 | 793226087023144960 | 2717 | 9287 |
| 622 | 793210959003287553 | 2608 | 8476 |
| 623 | 793195938047070209 | 5273 | 14458 |
| 624 | 793180763617361921 | 1864 | 6561 |
| 625 | 793165685325201412 | 2626 | 8909 |
| 626 | 793150605191548928 | 1595 | 5855 |
| 627 | 793135492858580992 | 2361 | 6083 |
| 628 | 793120401413079041 | 3688 | 12027 |
| 629 | 792913359805018113 | 3716 | 13601 |
| 630 | 792883833364439040 | 4004 | 10711 |
| 631 | 792773781206999040 | 1571 | 6997 |
| 632 | 792394556390137856 | 4015 | 12709 |
| 633 | 792050063153438720 | 1673 | 6774 |
| 634 | 791821351946420224 | 19706 | 0 |
| 635 | 791784077045166082 | 8904 | 0 |
| 636 | 791780927877898241 | 3557 | 0 |
| 637 | 791774931465953280 | 20767 | 42765 |
| 638 | 791672322847637504 | 2925 | 11148 |
| 639 | 791406955684368384 | 3856 | 12487 |
| 640 | 791312159183634433 | 2366 | 8318 |
| 641 | 791026214425268224 | 3816 | 0 |
| 642 | 790987426131050500 | 1990 | 9308 |
| 643 | 790946055508652032 | 4388 | 15857 |
| 644 | 790723298204217344 | 2144 | 0 |
| 645 | 790698755171364864 | 1806 | 7803 |
| 646 | 790581949425475584 | 6649 | 19570 |
| 647 | 790337589677002753 | 1769 | 7424 |
| 648 | 790277117346975746 | 2956 | 11900 |
| 649 | 790227638568808452 | 3312 | 0 |
| 650 | 789986466051088384 | 2144 | 8810 |
| 651 | 789960241177853952 | 3834 | 0 |
| 652 | 789903600034189313 | 3885 | 9780 |
| 653 | 789628658055020548 | 1650 | 7080 |
| 654 | 789599242079838210 | 1795 | 6378 |
| 655 | 789530877013393408 | 3156 | 11091 |
| 656 | 789314372632018944 | 2138 | 8201 |
| 657 | 789280767834746880 | 4591 | 0 |
| 658 | 789268448748703744 | 2447 | 8663 |
| 659 | 789137962068021249 | 2608 | 9222 |
| 660 | 788908386943430656 | 11711 | 26072 |
| 661 | 788765914992902144 | 9661 | 25906 |
| 662 | 788552643979468800 | 6663 | 0 |
| 663 | 788412144018661376 | 4924 | 14719 |
| 664 | 788178268662984705 | 1979 | 6898 |
| 665 | 788150585577050112 | 1199 | 5801 |
| 666 | 788070120937619456 | 3213 | 0 |
| 667 | 788039637453406209 | 1229 | 5796 |
| 668 | 787810552592695296 | 2839 | 8152 |
| 669 | 787717603741622272 | 2586 | 9713 |
| 670 | 787397959788929025 | 2668 | 10332 |
| 671 | 787322443945877504 | 1628 | 7396 |
| 672 | 787111942498508800 | 6297 | 0 |
| 673 | 786963064373534720 | 7427 | 25282 |
| 674 | 786729988674449408 | 2275 | 0 |
| 675 | 786709082849828864 | 5731 | 17368 |
| 676 | 786664955043049472 | 2364 | 10050 |
| 677 | 786595970293370880 | 2916 | 8978 |
| 678 | 786363235746385920 | 3218 | 10277 |
| 679 | 786286427768250368 | 2645 | 7561 |
| 680 | 786233965241827333 | 4377 | 14411 |
| 681 | 786051337297522688 | 147 | 1353 |
| 682 | 786036967502913536 | 6503 | 0 |
| 683 | 785927819176054784 | 2989 | 10815 |
| 684 | 785872687017132033 | 1673 | 6343 |
| 685 | 785639753186217984 | 2106 | 7456 |
| 686 | 785533386513321988 | 1840 | 8593 |
| 687 | 785515384317313025 | 1165 | 5796 |
| 688 | 785264754247995392 | 1518 | 6905 |
| 689 | 785170936622350336 | 4498 | 11381 |
| 690 | 784826020293709826 | 3011 | 9573 |
| 691 | 784517518371221505 | 2364 | 8499 |
| 692 | 784431430411685888 | 1183 | 5442 |
| 693 | 784183165795655680 | 7472 | 18954 |
| 694 | 784057939640352768 | 10357 | 28109 |
| 695 | 783839966405230592 | 10043 | 28392 |
| 696 | 783821107061198850 | 1829 | 6985 |
| 697 | 783695101801398276 | 2990 | 9873 |
| 698 | 783466772167098368 | 2076 | 7983 |
| 699 | 783391753726550016 | 5091 | 16001 |
| 700 | 783347506784731136 | 5143 | 0 |
| 701 | 783334639985389568 | 10883 | 27489 |
| 702 | 783085703974514689 | 2020 | 7735 |
| 703 | 782969140009107456 | 6888 | 22811 |
| 704 | 782747134529531904 | 1318 | 7066 |
| 705 | 782722598790725632 | 5012 | 16296 |
| 706 | 782598640137187329 | 1765 | 7381 |
| 707 | 782305867769217024 | 5128 | 15710 |
| 708 | 782021823840026624 | 5735 | 0 |
| 709 | 781955203444699136 | 3136 | 10569 |
| 710 | 781661882474196992 | 2527 | 9879 |
| 711 | 781655249211752448 | 1053 | 3784 |
| 712 | 781524693396357120 | 5144 | 19586 |
| 713 | 781308096455073793 | 2385 | 6751 |
| 714 | 781251288990355457 | 1930 | 7926 |
| 715 | 781163403222056960 | 2581 | 9272 |
| 716 | 780931614150983680 | 6739 | 20492 |
| 717 | 780858289093574656 | 1865 | 6803 |
| 718 | 780800785462489090 | 1201 | 5198 |
| 719 | 780601303617732608 | 3127 | 11425 |
| 720 | 780543529827336192 | 1627 | 5951 |
| 721 | 780496263422808064 | 3423 | 0 |
| 722 | 780476555013349377 | 103 | 0 |
| 723 | 780459368902959104 | 1002 | 4999 |
| 724 | 780192070812196864 | 2087 | 8213 |
| 725 | 780092040432480260 | 2136 | 0 |
| 726 | 780074436359819264 | 4568 | 11436 |
| 727 | 779834332596887552 | 6503 | 17765 |
| 728 | 779377524342161408 | 2885 | 8254 |
| 729 | 779124354206535695 | 17018 | 0 |
| 730 | 779056095788752897 | 4211 | 13894 |
| 731 | 778990705243029504 | 6654 | 18749 |
| 732 | 778774459159379968 | 9147 | 0 |
| 733 | 778764940568104960 | 338 | 820 |
| 734 | 778748913645780993 | 1206 | 6463 |
| 735 | 778650543019483137 | 1391 | 5423 |
| 736 | 778624900596654080 | 942 | 4341 |
| 737 | 778408200802557953 | 4004 | 12872 |
| 738 | 778396591732486144 | 11339 | 0 |
| 739 | 778383385161035776 | 1019 | 5506 |
| 740 | 778286810187399168 | 3060 | 9743 |
| 741 | 778039087836069888 | 2466 | 7993 |
| 742 | 778027034220126208 | 1492 | 6192 |
| 743 | 777953400541634568 | 3266 | 0 |
| 744 | 777885040357281792 | 1514 | 5997 |
| 745 | 777684233540206592 | 2725 | 10621 |
| 746 | 777641927919427584 | 3920 | 0 |
| 747 | 777621514455814149 | 2339 | 8219 |
| 748 | 777189768882946048 | 3984 | 13317 |
| 749 | 776819012571455488 | 12602 | 0 |
| 750 | 776813020089548800 | 1112 | 4603 |
| 751 | 776477788987613185 | 2559 | 8250 |
| 752 | 776249906839351296 | 8459 | 0 |
| 753 | 776218204058357768 | 14717 | 28098 |
| 754 | 776201521193218049 | 2334 | 9024 |
| 755 | 776113305656188928 | 4021 | 11110 |
| 756 | 776088319444877312 | 141 | 1714 |
| 757 | 775898661951791106 | 15532 | 0 |
| 758 | 775842724423557120 | 2465 | 11037 |
| 759 | 775733305207554048 | 3697 | 13077 |
| 760 | 775729183532220416 | 4278 | 12264 |
| 761 | 775364825476165632 | 2713 | 6947 |
| 762 | 775350846108426240 | 3628 | 9580 |
| 763 | 775085132600442880 | 4370 | 14623 |
| 764 | 774757898236878852 | 1656 | 8130 |
| 765 | 774639387460112384 | 1614 | 6366 |
| 766 | 774314403806253056 | 5087 | 20537 |
| 767 | 773985732834758656 | 3587 | 10159 |
| 768 | 773922284943896577 | 1626 | 6057 |
| 769 | 773704687002451968 | 1497 | 6238 |
| 770 | 773670353721753600 | 1222 | 5054 |
| 771 | 773547596996571136 | 5693 | 20822 |
| 772 | 773336787167145985 | 4668 | 0 |
| 773 | 773308824254029826 | 6947 | 21979 |
| 774 | 773247561583001600 | 3001 | 8879 |
| 775 | 773191612633579521 | 3801 | 9396 |
| 776 | 772877495989305348 | 3578 | 8048 |
| 777 | 772826264096874500 | 2208 | 7567 |
| 778 | 772615324260794368 | 3118 | 0 |
| 779 | 772581559778025472 | 1585 | 6110 |
| 780 | 772193107915964416 | 1289 | 5681 |
| 781 | 772152991789019136 | 1052 | 3590 |
| 782 | 772117678702071809 | 687 | 3555 |
| 783 | 772114945936949249 | 439 | 2583 |
| 784 | 772102971039580160 | 865 | 3773 |
| 785 | 771908950375665664 | 1756 | 6187 |
| 786 | 771770456517009408 | 3137 | 11289 |
| 787 | 771500966810099713 | 2419 | 7777 |
| 788 | 771380798096281600 | 4668 | 9921 |
| 789 | 771171053431250945 | 6891 | 0 |
| 790 | 771136648247640064 | 2708 | 8609 |
| 791 | 771102124360998913 | 1331 | 5862 |
| 792 | 771014301343748096 | 1538 | 6487 |
| 793 | 770787852854652928 | 1103 | 4622 |
| 794 | 770772759874076672 | 1325 | 4890 |
| 795 | 770655142660169732 | 1666 | 6923 |
| 796 | 770414278348247044 | 1926 | 5945 |
| 797 | 770293558247038976 | 1354 | 5852 |
| 798 | 770093767776997377 | 2816 | 0 |
| 799 | 770069151037685760 | 2123 | 7147 |
| 800 | 769940425801170949 | 8830 | 29296 |
| 801 | 769695466921623552 | 1561 | 6047 |
| 802 | 769335591808995329 | 7124 | 0 |
| 803 | 769212283578875904 | 1599 | 5079 |
| 804 | 768970937022709760 | 6000 | 13404 |
| 805 | 768909767477751808 | 2440 | 0 |
| 806 | 768855141948723200 | 825 | 3934 |
| 807 | 768609597686943744 | 1098 | 3857 |
| 808 | 768596291618299904 | 1187 | 4735 |
| 809 | 768554158521745409 | 5382 | 0 |
| 810 | 768473857036525572 | 3158 | 12772 |
| 811 | 768193404517830656 | 3266 | 10191 |
| 812 | 767884188863397888 | 1265 | 4468 |
| 813 | 767754930266464257 | 4955 | 14980 |
| 814 | 767500508068192258 | 2150 | 7052 |
| 815 | 767191397493538821 | 3478 | 11536 |
| 816 | 767122157629476866 | 2646 | 9555 |
| 817 | 766793450729734144 | 1259 | 4750 |
| 818 | 766714921925144576 | 347 | 2464 |
| 819 | 766693177336135680 | 730 | 3796 |
| 820 | 766423258543644672 | 1459 | 5636 |
| 821 | 766313316352462849 | 1733 | 6347 |
| 822 | 766078092750233600 | 2421 | 0 |
| 823 | 766069199026450432 | 774 | 3945 |
| 824 | 766008592277377025 | 460 | 3537 |
| 825 | 765719909049503744 | 1993 | 6807 |
| 826 | 765669560888528897 | 1131 | 4855 |
| 827 | 765395769549590528 | 3116 | 25126 |
| 828 | 765371061932261376 | 2005 | 6681 |
| 829 | 765222098633691136 | 3118 | 10929 |
| 830 | 764857477905154048 | 1647 | 6082 |
| 831 | 764259802650378240 | 1392 | 5641 |
| 832 | 763956972077010945 | 50 | 733 |
| 833 | 763837565564780549 | 3816 | 11762 |
| 834 | 763183847194451968 | 1359 | 5059 |
| 835 | 763167063695355904 | 2752 | 0 |
| 836 | 763103485927849985 | 2123 | 6934 |
| 837 | 762699858130116608 | 3312 | 11367 |
| 838 | 762471784394268675 | 5915 | 10512 |
| 839 | 762464539388485633 | 3834 | 9650 |
| 840 | 762316489655476224 | 1028 | 4498 |
| 841 | 762035686371364864 | 14306 | 29815 |
| 842 | 761976711479193600 | 1826 | 5049 |
| 843 | 761750502866649088 | 3588 | 0 |
| 844 | 761745352076779520 | 794 | 4020 |
| 845 | 761672994376806400 | 26746 | 46295 |
| 846 | 761599872357261312 | 1101 | 3884 |
| 847 | 761371037149827077 | 16658 | 0 |
| 848 | 761334018830917632 | 1338 | 4830 |
| 849 | 761292947749015552 | 1000 | 4192 |
| 850 | 761227390836215808 | 1446 | 5001 |
| 851 | 761004547850530816 | 3213 | 10651 |
| 852 | 760893934457552897 | 889 | 3576 |
| 853 | 760656994973933572 | 1751 | 6182 |
| 854 | 760641137271070720 | 1190 | 4681 |
| 855 | 760539183865880579 | 3342 | 7083 |
| 856 | 760521673607086080 | 1287 | 3922 |
| 857 | 760290219849637889 | 10573 | 25082 |
| 858 | 760252756032651264 | 797 | 3711 |
| 859 | 760190180481531904 | 1652 | 5351 |
| 860 | 760153949710192640 | 28 | 0 |
| 861 | 759943073749200896 | 1934 | 5530 |
| 862 | 759846353224826880 | 1798 | 6300 |
| 863 | 759793422261743616 | 1761 | 5585 |
| 864 | 759557299618865152 | 1103 | 4403 |
| 865 | 759447681597108224 | 2275 | 7946 |
| 866 | 759446261539934208 | 454 | 1563 |
| 867 | 759197388317847553 | 1804 | 5703 |
| 868 | 759159934323924993 | 1067 | 0 |
| 869 | 759099523532779520 | 3825 | 13625 |
| 870 | 759047813560868866 | 1850 | 6073 |
| 871 | 758854675097526272 | 842 | 3328 |
| 872 | 758828659922702336 | 3556 | 10486 |
| 873 | 758740312047005698 | 1499 | 5381 |
| 874 | 758474966123810816 | 914 | 3562 |
| 875 | 758467244762497024 | 2029 | 4477 |
| 876 | 758405701903519748 | 1763 | 4878 |
| 877 | 758355060040593408 | 966 | 3161 |
| 878 | 758099635764359168 | 9147 | 17731 |
| 879 | 758041019896193024 | 339 | 2531 |
| 880 | 757741869644341248 | 3024 | 6418 |
| 881 | 757729163776290825 | 7213 | 0 |
| 882 | 757725642876129280 | 1112 | 4252 |
| 883 | 757611664640446465 | 1009 | 4293 |
| 884 | 757597904299253760 | 278 | 0 |
| 885 | 757596066325864448 | 958 | 4070 |
| 886 | 757400162377592832 | 6322 | 14148 |
| 887 | 757393109802180609 | 1576 | 5451 |
| 888 | 757354760399941633 | 1302 | 4206 |
| 889 | 756998049151549440 | 1834 | 5874 |
| 890 | 756939218950160384 | 1839 | 6221 |
| 891 | 756651752796094464 | 1191 | 4702 |
| 892 | 756526248105566208 | 3301 | 9714 |
| 893 | 756303284449767430 | 1004 | 3701 |
| 894 | 756288534030475264 | 16317 | 41223 |
| 895 | 756275833623502848 | 1405 | 5984 |
| 896 | 755955933503782912 | 2633 | 6828 |
| 897 | 755206590534418437 | 4908 | 15314 |
| 898 | 755110668769038337 | 10192 | 19755 |
| 899 | 754874841593970688 | 7247 | 0 |
| 900 | 754856583969079297 | 2311 | 6449 |
| 901 | 754747087846248448 | 477 | 2419 |
| 902 | 754482103782404096 | 1792 | 4939 |
| 903 | 754449512966619136 | 672 | 3508 |
| 904 | 754120377874386944 | 2163 | 7397 |
| 905 | 753655901052166144 | 1994 | 5456 |
| 906 | 753420520834629632 | 3235 | 7347 |
| 907 | 753398408988139520 | 1731 | 5358 |
| 908 | 753375668877008896 | 2136 | 7148 |
| 909 | 753298634498793472 | 5210 | 0 |
| 910 | 753294487569522689 | 960 | 3125 |
| 911 | 753039830821511168 | 19190 | 34618 |
| 912 | 753026973505581056 | 877 | 3658 |
| 913 | 752932432744185856 | 6297 | 11758 |
| 914 | 752917284578922496 | 1443 | 6512 |
| 915 | 752701944171524096 | 2618 | 0 |
| 916 | 752682090207055872 | 1460 | 5610 |
| 917 | 752660715232722944 | 1424 | 4083 |
| 918 | 752568224206688256 | 2086 | 5116 |
| 919 | 752519690950500352 | 3157 | 6868 |
| 920 | 752334515931054080 | 1009 | 3594 |
| 921 | 752309394570878976 | 14897 | 0 |
| 922 | 752173152931807232 | 1671 | 5551 |
| 923 | 751950017322246144 | 832 | 2853 |
| 924 | 751937170840121344 | 1199 | 4836 |
| 925 | 751830394383790080 | 1786 | 5442 |
| 926 | 751793661361422336 | 2618 | 5400 |
| 927 | 751598357617971201 | 2831 | 7415 |
| 928 | 751583847268179968 | 1004 | 4109 |
| 929 | 751538714308972544 | 1148 | 4725 |
| 930 | 751456908746354688 | 925 | 3011 |
| 931 | 751251247299190784 | 5394 | 11743 |
| 932 | 751205363882532864 | 1666 | 5904 |
| 933 | 751132876104687617 | 1187 | 4726 |
| 934 | 750868782890057730 | 1251 | 4464 |
| 935 | 750719632563142656 | 4591 | 12261 |
| 936 | 750506206503038976 | 1055 | 4142 |
| 937 | 750429297815552001 | 3920 | 12300 |
| 938 | 750383411068534784 | 1042 | 4264 |
| 939 | 750381685133418496 | 27 | 670 |
| 940 | 750147208377409536 | 875 | 2912 |
| 941 | 750132105863102464 | 1182 | 3371 |
| 942 | 750117059602808832 | 1210 | 4057 |
| 943 | 750101899009982464 | 777 | 2848 |
| 944 | 750086836815486976 | 491 | 2026 |
| 945 | 750071704093859840 | 3033 | 7256 |
| 946 | 750056684286914561 | 820 | 2957 |
| 947 | 750041628174217216 | 567 | 2969 |
| 948 | 750026558547456000 | 719 | 2532 |
| 949 | 750011400160841729 | 820 | 3012 |
| 950 | 749996283729883136 | 756 | 2837 |
| 951 | 749981277374128128 | 2278 | 4786 |
| 952 | 749774190421639168 | 1211 | 4356 |
| 953 | 749417653287129088 | 1515 | 5694 |
| 954 | 749403093750648834 | 492 | 2438 |
| 955 | 749395845976588288 | 3157 | 7957 |
| 956 | 749317047558017024 | 2048 | 5097 |
| 957 | 749075273010798592 | 1887 | 5372 |
| 958 | 749064354620928000 | 1407 | 4505 |
| 959 | 749036806121881602 | 731 | 2884 |
| 960 | 748977405889503236 | 3131 | 10032 |
| 961 | 748932637671223296 | 2061 | 5409 |
| 962 | 748705597323898880 | 879 | 2587 |
| 963 | 748699167502000129 | 1460 | 4416 |
| 964 | 748692773788876800 | 1229 | 3957 |
| 965 | 748575535303884801 | 1812 | 5642 |
| 966 | 748568946752774144 | 610 | 2048 |
| 967 | 748346686624440324 | 1122 | 4859 |
| 968 | 748337862848962560 | 3739 | 7066 |
| 969 | 748324050481647620 | 693 | 3459 |
| 970 | 748307329658011649 | 655 | 3448 |
| 971 | 748220828303695873 | 7114 | 13144 |
| 972 | 747963614829678593 | 1957 | 5385 |
| 973 | 747933425676525569 | 2359 | 6176 |
| 974 | 747885874273214464 | 882 | 2721 |
| 975 | 747844099428986880 | 677 | 2626 |
| 976 | 747816857231626240 | 1061 | 4503 |
| 977 | 747651430853525504 | 143 | 1274 |
| 978 | 747648653817413632 | 5329 | 11976 |
| 979 | 747600769478692864 | 523 | 2172 |
| 980 | 747594051852075008 | 950 | 3427 |
| 981 | 747512671126323200 | 1477 | 5133 |
| 982 | 747461612269887489 | 949 | 3596 |
| 983 | 747439450712596480 | 1751 | 5043 |
| 984 | 747242308580548608 | 2633 | 0 |
| 985 | 747219827526344708 | 1442 | 4896 |
| 986 | 747204161125646336 | 832 | 3127 |
| 987 | 747103485104099331 | 3626 | 8895 |
| 988 | 746906459439529985 | 271 | 2723 |
| 989 | 746872823977771008 | 1948 | 5580 |
| 990 | 746818907684614144 | 1597 | 4954 |
| 991 | 746790600704425984 | 1465 | 4526 |
| 992 | 746757706116112384 | 3557 | 8858 |
| 993 | 746726898085036033 | 1639 | 5638 |
| 994 | 746542875601690625 | 1748 | 4698 |
| 995 | 746521445350707200 | 901 | 0 |
| 996 | 746507379341139972 | 991 | 4345 |
| 997 | 746369468511756288 | 1489 | 5766 |
| 998 | 746131877086527488 | 2004 | 6396 |
| 999 | 746056683365994496 | 741 | 3323 |
| 1000 | 745789745784041472 | 965 | 3674 |
| 1001 | 745712589599014916 | 2130 | 6514 |
| 1002 | 745433870967832576 | 2312 | 6547 |
| 1003 | 745422732645535745 | 2206 | 7952 |
| 1004 | 745314880350101504 | 2480 | 6613 |
| 1005 | 745074613265149952 | 3187 | 7281 |
| 1006 | 745057283344719872 | 2056 | 6757 |
| 1007 | 744995568523612160 | 569 | 2750 |
| 1008 | 744971049620602880 | 2447 | 7312 |
| 1009 | 744709971296780288 | 1438 | 5228 |
| 1010 | 744334592493166593 | 1936 | 6340 |
| 1011 | 744234799360020481 | 70681 | 144807 |
| 1012 | 744223424764059648 | 326 | 1531 |
| 1013 | 743980027717509120 | 1005 | 3899 |
| 1014 | 743895849529389061 | 879 | 3409 |
| 1015 | 743835915802583040 | 1873 | 0 |
| 1016 | 743609206067040256 | 1269 | 4162 |
| 1017 | 743595368194129920 | 5967 | 16977 |
| 1018 | 743545585370791937 | 862 | 3281 |
| 1019 | 743510151680958465 | 3419 | 7417 |
| 1020 | 743253157753532416 | 1124 | 3932 |
| 1021 | 743222593470234624 | 1741 | 5736 |
| 1022 | 743210557239623680 | 1237 | 3561 |
| 1023 | 742534281772302336 | 3284 | 6570 |
| 1024 | 742528092657332225 | 1795 | 4109 |
| 1025 | 742465774154047488 | 3607 | 6760 |
| 1026 | 742423170473463808 | 3423 | 9101 |
| 1027 | 742385895052087300 | 1780 | 6292 |
| 1028 | 742161199639494656 | 1248 | 4006 |
| 1029 | 742150209887731712 | 1402 | 4717 |
| 1030 | 741793263812808706 | 1386 | 4216 |
| 1031 | 741743634094141440 | 2500 | 7552 |
| 1032 | 741438259667034112 | 747 | 3420 |
| 1033 | 741303864243200000 | 2923 | 8133 |
| 1034 | 741099773336379392 | 5026 | 9232 |
| 1035 | 741067306818797568 | 2816 | 8868 |
| 1036 | 740995100998766593 | 2475 | 5834 |
| 1037 | 740711788199743490 | 864 | 3151 |
| 1038 | 740699697422163968 | 710 | 2652 |
| 1039 | 740676976021798912 | 6217 | 16849 |
| 1040 | 740373189193256964 | 12138 | 32594 |
| 1041 | 740365076218183684 | 389 | 2248 |
| 1042 | 740359016048689152 | 798 | 3050 |
| 1043 | 740214038584557568 | 1790 | 6191 |
| 1044 | 739979191639244800 | 5382 | 18517 |
| 1045 | 739932936087216128 | 987 | 3760 |
| 1046 | 739844404073074688 | 790 | 3531 |
| 1047 | 739623569819336705 | 1241 | 3502 |
| 1048 | 739606147276148736 | 1495 | 4994 |
| 1049 | 739544079319588864 | 19277 | 36495 |
| 1050 | 739485634323156992 | 2644 | 6606 |
| 1051 | 739238157791694849 | 52878 | 107202 |
| 1052 | 738891149612572673 | 6 | 90 |
| 1053 | 738885046782832640 | 1045 | 3501 |
| 1054 | 738883359779196928 | 723 | 3047 |
| 1055 | 738537504001953792 | 1397 | 4704 |
| 1056 | 738402415918125056 | 743 | 3014 |
| 1057 | 738184450748633089 | 1108 | 3978 |
| 1058 | 738166403467907072 | 3040 | 8088 |
| 1059 | 738156290900254721 | 586 | 2286 |
| 1060 | 737826014890496000 | 1611 | 4839 |
| 1061 | 737800304142471168 | 3173 | 9273 |
| 1062 | 737678689543020544 | 1203 | 4635 |
| 1063 | 737445876994609152 | 4065 | 9456 |
| 1064 | 737322739594330112 | 736 | 3326 |
| 1065 | 737310737551491075 | 6758 | 13544 |
| 1066 | 736736130620620800 | 1542 | 3889 |
| 1067 | 736392552031657984 | 6663 | 16350 |
| 1068 | 736365877722001409 | 1116 | 3680 |
| 1069 | 736225175608430592 | 2550 | 7498 |
| 1070 | 736010884653420544 | 2708 | 7262 |
| 1071 | 735991953473572864 | 1037 | 3301 |
| 1072 | 735648611367784448 | 1014 | 3732 |
| 1073 | 735635087207878657 | 2144 | 5670 |
| 1074 | 735274964362878976 | 4552 | 12046 |
| 1075 | 735256018284875776 | 803 | 3070 |
| 1076 | 735137028879360001 | 885 | 2885 |
| 1077 | 734912297295085568 | 472 | 2548 |
| 1078 | 734787690684657664 | 5761 | 11572 |
| 1079 | 734776360183431168 | 489 | 2324 |
| 1080 | 734559631394082816 | 355 | 1377 |
| 1081 | 733828123016450049 | 718 | 3309 |
| 1082 | 733822306246479872 | 930 | 3388 |
| 1083 | 733482008106668032 | 854 | 2883 |
| 1084 | 733460102733135873 | 1139 | 3872 |
| 1085 | 733109485275860992 | 15532 | 49383 |
| 1086 | 732732193018155009 | 483 | 2233 |
| 1087 | 732726085725589504 | 799 | 3296 |
| 1088 | 732585889486888962 | 713 | 3364 |
| 1089 | 732375214819057664 | 2284 | 7438 |
| 1090 | 732005617171337216 | 4877 | 13707 |
| 1091 | 731285275100512256 | 903 | 3221 |
| 1092 | 731156023742988288 | 1144 | 3551 |
| 1093 | 730924654643314689 | 1791 | 5651 |
| 1094 | 730573383004487680 | 1918 | 4470 |
| 1095 | 730427201120833536 | 941 | 3207 |
| 1096 | 730211855403241472 | 959 | 3505 |
| 1097 | 730196704625098752 | 1709 | 4452 |
| 1098 | 729854734790754305 | 1017 | 3722 |
| 1099 | 729838605770891264 | 338 | 1605 |
| 1100 | 729823566028484608 | 1127 | 3662 |
| 1101 | 729463711119904772 | 2098 | 5328 |
| 1102 | 729113531270991872 | 288 | 1744 |
| 1103 | 728986383096946689 | 742 | 2894 |
| 1104 | 728760639972315136 | 1547 | 4302 |
| 1105 | 728751179681943552 | 617 | 2552 |
| 1106 | 728653952833728512 | 948 | 3063 |
| 1107 | 728409960103686147 | 1827 | 4507 |
| 1108 | 728387165835677696 | 878 | 3427 |
| 1109 | 728046963732717569 | 1086 | 3947 |
| 1110 | 728035342121635841 | 1514 | 4166 |
| 1111 | 728015554473250816 | 992 | 3793 |
| 1112 | 727685679342333952 | 576 | 2733 |
| 1113 | 727644517743104000 | 1590 | 5399 |
| 1114 | 727524757080539137 | 1088 | 4118 |
| 1115 | 727314416056803329 | 673 | 3069 |
| 1116 | 727286334147182592 | 747 | 2831 |
| 1117 | 727175381690781696 | 1246 | 3601 |
| 1118 | 727155742655025152 | 1201 | 3337 |
| 1119 | 726935089318363137 | 2209 | 6314 |
| 1120 | 726887082820554753 | 1370 | 3534 |
| 1121 | 726828223124897792 | 920 | 3310 |
| 1122 | 726224900189511680 | 1044 | 4084 |
| 1123 | 725842289046749185 | 2421 | 6533 |
| 1124 | 725786712245440512 | 1248 | 3855 |
| 1125 | 725729321944506368 | 1609 | 4802 |
| 1126 | 725458796924002305 | 557 | 1306 |
| 1127 | 724983749226668032 | 1170 | 3450 |
| 1128 | 724771698126512129 | 568 | 2161 |
| 1129 | 724405726123311104 | 1515 | 4877 |
| 1130 | 724049859469295616 | 1622 | 3986 |
| 1131 | 724046343203856385 | 513 | 2456 |
| 1132 | 724004602748780546 | 1395 | 3841 |
| 1133 | 723912936180330496 | 1127 | 3597 |
| 1134 | 723688335806480385 | 2646 | 7045 |
| 1135 | 723673163800948736 | 816 | 2795 |
| 1136 | 723179728551723008 | 1692 | 4869 |
| 1137 | 722974582966214656 | 1439 | 3776 |
| 1138 | 722613351520608256 | 1496 | 4595 |
| 1139 | 721503162398597120 | 1649 | 4238 |
| 1140 | 721001180231503872 | 551 | 2350 |
| 1141 | 720785406564900865 | 700 | 2866 |
| 1142 | 720775346191278080 | 570 | 2258 |
| 1143 | 720415127506415616 | 1365 | 3802 |
| 1144 | 720389942216527872 | 2269 | 5881 |
| 1145 | 720340705894408192 | 879 | 2630 |
| 1146 | 720059472081784833 | 1021 | 3564 |
| 1147 | 720043174954147842 | 1820 | 4582 |
| 1148 | 719991154352222208 | 1598 | 4491 |
| 1149 | 719704490224398336 | 1301 | 4187 |
| 1150 | 719551379208073216 | 1715 | 4653 |
| 1151 | 719367763014393856 | 692 | 2605 |
| 1152 | 719339463458033665 | 1121 | 4104 |
| 1153 | 719332531645071360 | 859 | 3184 |
| 1154 | 718971898235854848 | 986 | 3215 |
| 1155 | 718939241951195136 | 1587 | 4810 |
| 1156 | 718631497683582976 | 7245 | 17380 |
| 1157 | 718613305783398402 | 430 | 2262 |
| 1158 | 718540630683709445 | 926 | 2242 |
| 1159 | 718460005985447936 | 478 | 2513 |
| 1160 | 718454725339934721 | 1383 | 4513 |
| 1161 | 718246886998687744 | 448 | 1764 |
| 1162 | 718234618122661888 | 915 | 3576 |
| 1163 | 717841801130979328 | 545 | 2277 |
| 1164 | 717790033953034240 | 990 | 2637 |
| 1165 | 717537687239008257 | 1666 | 5328 |
| 1166 | 717428917016076293 | 408 | 1479 |
| 1167 | 717421804990701568 | 759 | 2898 |
| 1168 | 717047459982213120 | 1742 | 5812 |
| 1169 | 717009362452090881 | 872 | 2987 |
| 1170 | 716802964044845056 | 1051 | 3971 |
| 1171 | 716791146589110272 | 1459 | 7755 |
| 1172 | 716730379797970944 | 397 | 1135 |
| 1173 | 716447146686459905 | 5322 | 12032 |
| 1174 | 716439118184652801 | 191 | 2199 |
| 1175 | 716285507865542656 | 969 | 2561 |
| 1176 | 716080869887381504 | 1711 | 6264 |
| 1177 | 715928423106027520 | 796 | 2939 |
| 1178 | 715758151270801409 | 1290 | 3424 |
| 1179 | 715733265223708672 | 1531 | 4294 |
| 1180 | 715704790270025728 | 514 | 2567 |
| 1181 | 715696743237730304 | 1170 | 3616 |
| 1182 | 715680795826982913 | 1446 | 3980 |
| 1183 | 715360349751484417 | 1412 | 5044 |
| 1184 | 715342466308784130 | 627 | 2799 |
| 1185 | 715220193576927233 | 590 | 2214 |
| 1186 | 715200624753819648 | 1688 | 4762 |
| 1187 | 715009755312439296 | 1107 | 3824 |
| 1188 | 714982300363173890 | 937 | 3439 |
| 1189 | 714962719905021952 | 3845 | 6762 |
| 1190 | 714957620017307648 | 1284 | 3824 |
| 1191 | 714631576617938945 | 900 | 3021 |
| 1192 | 714606013974974464 | 833 | 3352 |
| 1193 | 714485234495041536 | 1011 | 2461 |
| 1194 | 714258258790387713 | 671 | 2829 |
| 1195 | 714251586676113411 | 762 | 3030 |
| 1196 | 714214115368108032 | 800 | 2117 |
| 1197 | 714141408463036416 | 1284 | 4012 |
| 1198 | 713919462244790272 | 724 | 3050 |
| 1199 | 713909862279876608 | 486 | 1752 |
| 1200 | 713900603437621249 | 665 | 2627 |
| 1201 | 713761197720473600 | 1244 | 4470 |
| 1202 | 713411074226274305 | 1188 | 4102 |
| 1203 | 713177543487135744 | 2600 | 6666 |
| 1204 | 713175907180089344 | 1334 | 4097 |
| 1205 | 712809025985978368 | 6102 | 17580 |
| 1206 | 712717840512598017 | 4517 | 11345 |
| 1207 | 712668654853337088 | 1102 | 3836 |
| 1208 | 712438159032893441 | 1422 | 4916 |
| 1209 | 712309440758808576 | 24 | 222 |
| 1210 | 712097430750289920 | 938 | 3470 |
| 1211 | 712092745624633345 | 814 | 2716 |
| 1212 | 712085617388212225 | 437 | 3021 |
| 1213 | 712065007010385924 | 570 | 2078 |
| 1214 | 711998809858043904 | 122 | 0 |
| 1215 | 711968124745228288 | 2097 | 7426 |
| 1216 | 711743778164514816 | 912 | 2624 |
| 1217 | 711732680602345472 | 3701 | 8095 |
| 1218 | 711694788429553666 | 16658 | 30308 |
| 1219 | 711652651650457602 | 822 | 3555 |
| 1220 | 711363825979756544 | 1019 | 3332 |
| 1221 | 711306686208872448 | 680 | 3059 |
| 1222 | 711008018775851008 | 559 | 2747 |
| 1223 | 710997087345876993 | 1267 | 4225 |
| 1224 | 710844581445812225 | 614 | 2358 |
| 1225 | 710833117892898816 | 476 | 2475 |
| 1226 | 710658690886586372 | 515 | 2145 |
| 1227 | 710609963652087808 | 2160 | 4440 |
| 1228 | 710588934686908417 | 1699 | 4184 |
| 1229 | 710296729921429505 | 672 | 2204 |
| 1230 | 710283270106132480 | 481 | 2000 |
| 1231 | 710272297844797440 | 1144 | 4154 |
| 1232 | 710269109699739648 | 1018 | 2204 |
| 1233 | 710153181850935296 | 814 | 2688 |
| 1234 | 710140971284037632 | 805 | 2522 |
| 1235 | 710117014656950272 | 1785 | 5037 |
| 1236 | 709918798883774466 | 995 | 3231 |
| 1237 | 709901256215666688 | 92 | 608 |
| 1238 | 709852847387627521 | 1092 | 3243 |
| 1239 | 709566166965075968 | 1075 | 3261 |
| 1240 | 709556954897764353 | 975 | 3027 |
| 1241 | 709519240576036864 | 219 | 1389 |
| 1242 | 709449600415961088 | 519 | 2029 |
| 1243 | 709409458133323776 | 617 | 2431 |
| 1244 | 709225125749587968 | 522 | 2212 |
| 1245 | 709207347839836162 | 5192 | 11436 |
| 1246 | 709198395643068416 | 591 | 2272 |
| 1247 | 709179584944730112 | 611 | 1857 |
| 1248 | 709158332880297985 | 366 | 1882 |
| 1249 | 709042156699303936 | 1482 | 4347 |
| 1250 | 708853462201716736 | 595 | 1670 |
| 1251 | 708845821941387268 | 806 | 2745 |
| 1252 | 708834316713893888 | 450 | 1556 |
| 1253 | 708810915978854401 | 6264 | 15254 |
| 1254 | 708738143638450176 | 741 | 2546 |
| 1255 | 708711088997666817 | 640 | 2344 |
| 1256 | 708479650088034305 | 618 | 2349 |
| 1257 | 708469915515297792 | 733 | 2857 |
| 1258 | 708400866336894977 | 9086 | 14697 |
| 1259 | 708356463048204288 | 1200 | 3308 |
| 1260 | 708349470027751425 | 677 | 2191 |
| 1261 | 708149363256774660 | 1414 | 3993 |
| 1262 | 708130923141795840 | 785 | 3105 |
| 1263 | 708119489313951744 | 898 | 2487 |
| 1264 | 708109389455101952 | 502 | 1804 |
| 1265 | 708026248782585858 | 1754 | 4073 |
| 1266 | 707995814724026368 | 1017 | 2879 |
| 1267 | 707983188426153984 | 2 | 45 |
| 1268 | 707969809498152960 | 869 | 2492 |
| 1269 | 707776935007539200 | 874 | 3014 |
| 1270 | 707741517457260545 | 556 | 2295 |
| 1271 | 707738799544082433 | 2206 | 3740 |
| 1272 | 707693576495472641 | 918 | 3129 |
| 1273 | 707629649552134146 | 788 | 2359 |
| 1274 | 707610948723478529 | 5735 | 15629 |
| 1275 | 707420581654872064 | 635 | 2076 |
| 1276 | 707411934438625280 | 546 | 2120 |
| 1277 | 707387676719185920 | 1150 | 3223 |
| 1278 | 707377100785885184 | 977 | 3019 |
| 1279 | 707315916783140866 | 579 | 2289 |
| 1280 | 707297311098011648 | 712 | 2585 |
| 1281 | 707059547140169728 | 619 | 2406 |
| 1282 | 707038192327901184 | 719 | 2018 |
| 1283 | 707021089608753152 | 1225 | 3739 |
| 1284 | 707014260413456384 | 543 | 2120 |
| 1285 | 706904523814649856 | 7124 | 13460 |
| 1286 | 706901761596989440 | 527 | 1890 |
| 1287 | 706681918348251136 | 895 | 3028 |
| 1288 | 706644897839910912 | 988 | 2353 |
| 1289 | 706593038911545345 | 582 | 1990 |
| 1290 | 706538006853918722 | 1297 | 3201 |
| 1291 | 706516534877929472 | 931 | 2878 |
| 1292 | 706346369204748288 | 843 | 3178 |
| 1293 | 706310011488698368 | 7152 | 19565 |
| 1294 | 706291001778950144 | 439 | 1572 |
| 1295 | 706265994973601792 | 851 | 2526 |
| 1296 | 706169069255446529 | 2004 | 3598 |
| 1297 | 706166467411222528 | 1457 | 4742 |
| 1298 | 706153300320784384 | 345 | 1365 |
| 1299 | 705975130514706432 | 666 | 2868 |
| 1300 | 705970349788291072 | 799 | 2932 |
| 1301 | 705898680587526145 | 496 | 2190 |
| 1302 | 705786532653883392 | 468 | 1797 |
| 1303 | 705591895322394625 | 1033 | 2919 |
| 1304 | 705475953783398401 | 830 | 2748 |
| 1305 | 705442520700944385 | 1463 | 4074 |
| 1306 | 705428427625635840 | 1524 | 3519 |
| 1307 | 705239209544720384 | 679 | 2777 |
| 1308 | 705223444686888960 | 716 | 2383 |
| 1309 | 705102439679201280 | 475 | 1966 |
| 1310 | 705066031337840642 | 556 | 2017 |
| 1311 | 704871453724954624 | 1018 | 3968 |
| 1312 | 704859558691414016 | 477 | 2076 |
| 1313 | 704847917308362754 | 1369 | 4711 |
| 1314 | 704819833553219584 | 899 | 2450 |
| 1315 | 704761120771465216 | 2633 | 6143 |
| 1316 | 704499785726889984 | 908 | 2665 |
| 1317 | 704491224099647488 | 71 | 690 |
| 1318 | 704480331685040129 | 981 | 3149 |
| 1319 | 704364645503647744 | 3234 | 7347 |
| 1320 | 704347321748819968 | 314 | 1449 |
| 1321 | 704134088924532736 | 413 | 1388 |
| 1322 | 704113298707505153 | 520 | 1719 |
| 1323 | 704054845121142784 | 844 | 2696 |
| 1324 | 703774238772166656 | 405 | 1708 |
| 1325 | 703769065844768768 | 1025 | 3020 |
| 1326 | 703631701117943808 | 602 | 2367 |
| 1327 | 703611486317502464 | 1385 | 3551 |
| 1328 | 703425003149250560 | 1224 | 3507 |
| 1329 | 703407252292673536 | 624 | 2260 |
| 1330 | 703382836347330562 | 1035 | 3227 |
| 1331 | 703356393781329922 | 346 | 1770 |
| 1332 | 703268521220972544 | 494 | 1826 |
| 1333 | 703079050210877440 | 2805 | 6824 |
| 1334 | 703041949650034688 | 11339 | 24373 |
| 1335 | 702932127499816960 | 654 | 2378 |
| 1336 | 702899151802126337 | 413 | 1483 |
| 1337 | 702684942141153280 | 965 | 2985 |
| 1338 | 702671118226825216 | 509 | 2024 |
| 1339 | 702598099714314240 | 3140 | 11347 |
| 1340 | 702539513671897089 | 872 | 2649 |
| 1341 | 702332542343577600 | 1387 | 2937 |
| 1342 | 702321140488925184 | 955 | 3033 |
| 1343 | 702276748847800320 | 695 | 2286 |
| 1344 | 702217446468493312 | 1227 | 4398 |
| 1345 | 701981390485725185 | 892 | 3166 |
| 1346 | 701952816642965504 | 930 | 3543 |
| 1347 | 701889187134500865 | 1256 | 3253 |
| 1348 | 701805642395348998 | 1512 | 3130 |
| 1349 | 701601587219795968 | 416 | 1926 |
| 1350 | 701570477911896070 | 841 | 2580 |
| 1351 | 701545186879471618 | 550 | 2455 |
| 1352 | 701214700881756160 | 4640 | 11293 |
| 1353 | 700890391244103680 | 510 | 2046 |
| 1354 | 700864154249383937 | 558 | 2405 |
| 1355 | 700847567345688576 | 452 | 2280 |
| 1356 | 700796979434098688 | 863 | 2261 |
| 1357 | 700747788515020802 | 8459 | 21049 |
| 1358 | 700518061187723268 | 723 | 2399 |
| 1359 | 700505138482569216 | 522 | 2111 |
| 1360 | 700462010979500032 | 1625 | 3787 |
| 1361 | 700167517596164096 | 656 | 2435 |
| 1362 | 700151421916807169 | 610 | 2058 |
| 1363 | 700143752053182464 | 2440 | 6937 |
| 1364 | 700062718104104960 | 614 | 2453 |
| 1365 | 700029284593901568 | 531 | 1919 |
| 1366 | 700002074055016451 | 1204 | 3034 |
| 1367 | 699801817392291840 | 851 | 2780 |
| 1368 | 699788877217865730 | 470 | 2065 |
| 1369 | 699779630832685056 | 1110 | 2510 |
| 1370 | 699775878809702401 | 540 | 1811 |
| 1371 | 699691744225525762 | 4165 | 9478 |
| 1372 | 699446877801091073 | 2401 | 5520 |
| 1373 | 699434518667751424 | 468 | 2033 |
| 1374 | 699423671849451520 | 289 | 1252 |
| 1375 | 699413908797464576 | 571 | 1933 |
| 1376 | 699370870310113280 | 393 | 1754 |
| 1377 | 699323444782047232 | 784 | 2908 |
| 1378 | 699088579889332224 | 565 | 2092 |
| 1379 | 699079609774645248 | 574 | 2258 |
| 1380 | 699072405256409088 | 1081 | 2724 |
| 1381 | 699060279947165696 | 1624 | 3433 |
| 1382 | 699036661657767936 | 1094 | 2407 |
| 1383 | 698989035503689728 | 878 | 3088 |
| 1384 | 698953797952008193 | 831 | 2490 |
| 1385 | 698907974262222848 | 556 | 2342 |
| 1386 | 698710712454139905 | 619 | 2276 |
| 1387 | 698703483621523456 | 337 | 1328 |
| 1388 | 698635131305795584 | 315 | 1198 |
| 1389 | 698549713696649216 | 560 | 2147 |
| 1390 | 698355670425473025 | 396 | 1705 |
| 1391 | 698342080612007937 | 872 | 2079 |
| 1392 | 698262614669991936 | 1800 | 4410 |
| 1393 | 698195409219559425 | 5458 | 15539 |
| 1394 | 698178924120031232 | 678 | 2593 |
| 1395 | 697995514407682048 | 305 | 1414 |
| 1396 | 697990423684476929 | 1173 | 3019 |
| 1397 | 697943111201378304 | 618 | 2207 |
| 1398 | 697881462549430272 | 1056 | 2786 |
| 1399 | 697630435728322560 | 498 | 1604 |
| 1400 | 697616773278015490 | 925 | 2896 |
| 1401 | 697596423848730625 | 1134 | 2785 |
| 1402 | 697575480820686848 | 455 | 1892 |
| 1403 | 697516214579523584 | 996 | 1880 |
| 1404 | 697482927769255936 | 603 | 2242 |
| 1405 | 697463031882764288 | 1274 | 3173 |
| 1406 | 697270446429966336 | 1718 | 4352 |
| 1407 | 697259378236399616 | 906 | 3044 |
| 1408 | 697255105972801536 | 1058 | 2852 |
| 1409 | 697242256848379904 | 618 | 2333 |
| 1410 | 696900204696625153 | 941 | 2926 |
| 1411 | 696894894812565505 | 620 | 2172 |
| 1412 | 696886256886657024 | 1630 | 4452 |
| 1413 | 696877980375769088 | 642 | 2265 |
| 1414 | 696754882863349760 | 329 | 1374 |
| 1415 | 696744641916489729 | 838 | 1899 |
| 1416 | 696713835009417216 | 587 | 2178 |
| 1417 | 696518437233913856 | 1572 | 3643 |
| 1418 | 696490539101908992 | 127 | 1135 |
| 1419 | 696488710901260288 | 930 | 2314 |
| 1420 | 696405997980676096 | 1054 | 2931 |
| 1421 | 696100768806522880 | 587 | 1780 |
| 1422 | 695816827381944320 | 1056 | 2767 |
| 1423 | 695794761660297217 | 709 | 2919 |
| 1424 | 695767669421768709 | 666 | 1712 |
| 1425 | 695629776980148225 | 1898 | 4208 |
| 1426 | 695446424020918272 | 1656 | 4099 |
| 1427 | 695409464418041856 | 3253 | 8005 |
| 1428 | 695314793360662529 | 1302 | 3341 |
| 1429 | 695095422348574720 | 551 | 2460 |
| 1430 | 695074328191332352 | 998 | 2614 |
| 1431 | 695064344191721472 | 529 | 1479 |
| 1432 | 695051054296211456 | 718 | 2437 |
| 1433 | 694925794720792577 | 822 | 2499 |
| 1434 | 694905863685980160 | 837 | 2538 |
| 1435 | 694669722378485760 | 13100 | 33080 |
| 1436 | 694356675654983680 | 251 | 1386 |
| 1437 | 694352839993344000 | 542 | 1883 |
| 1438 | 694342028726001664 | 432 | 1465 |
| 1439 | 694329668942569472 | 449 | 1827 |
| 1440 | 694206574471057408 | 1858 | 3820 |
| 1441 | 694183373896572928 | 843 | 2711 |
| 1442 | 694001791655137281 | 925 | 3141 |
| 1443 | 693993230313091072 | 359 | 1739 |
| 1444 | 693942351086120961 | 330 | 1628 |
| 1445 | 693647888581312512 | 520 | 2479 |
| 1446 | 693644216740769793 | 115 | 1267 |
| 1447 | 693642232151285760 | 377 | 2359 |
| 1448 | 693629975228977152 | 722 | 2264 |
| 1449 | 693622659251335168 | 338 | 1420 |
| 1450 | 693590843962331137 | 1783 | 4669 |
| 1451 | 693582294167244802 | 223 | 1522 |
| 1452 | 693486665285931008 | 571 | 1633 |
| 1453 | 693280720173801472 | 1126 | 3090 |
| 1454 | 693267061318012928 | 733 | 2202 |
| 1455 | 693262851218264065 | 452 | 2051 |
| 1456 | 693231807727280129 | 671 | 2659 |
| 1457 | 693155686491000832 | 2901 | 7273 |
| 1458 | 693109034023534592 | 551 | 1569 |
| 1459 | 693095443459342336 | 406 | 1705 |
| 1460 | 692919143163629568 | 699 | 2503 |
| 1461 | 692905862751522816 | 791 | 2239 |
| 1462 | 692901601640583168 | 539 | 1620 |
| 1463 | 692894228850999298 | 718 | 2087 |
| 1464 | 692828166163931137 | 797 | 2661 |
| 1465 | 692752401762250755 | 3309 | 6296 |
| 1466 | 692568918515392513 | 1395 | 4038 |
| 1467 | 692535307825213440 | 1237 | 2908 |
| 1468 | 692530551048294401 | 369 | 1706 |
| 1469 | 692423280028966913 | 198 | 1365 |
| 1470 | 692417313023332352 | 3143 | 8666 |
| 1471 | 692187005137076224 | 747 | 2339 |
| 1472 | 692158366030913536 | 719 | 1973 |
| 1473 | 692142790915014657 | 355 | 1512 |
| 1474 | 692041934689402880 | 1134 | 3128 |
| 1475 | 692017291282812928 | 873 | 2675 |
| 1476 | 691820333922455552 | 1498 | 3660 |
| 1477 | 691793053716221953 | 3835 | 7497 |
| 1478 | 691756958957883396 | 889 | 2604 |
| 1479 | 691675652215414786 | 460 | 1796 |
| 1480 | 691483041324204033 | 502 | 2203 |
| 1481 | 691459709405118465 | 1027 | 3736 |
| 1482 | 691444869282295808 | 753 | 2438 |
| 1483 | 691416866452082688 | 6927 | 17878 |
| 1484 | 691321916024623104 | 602 | 2391 |
| 1485 | 691096613310316544 | 796 | 2766 |
| 1486 | 691090071332753408 | 307 | 1606 |
| 1487 | 690989312272396288 | 2618 | 5452 |
| 1488 | 690959652130045952 | 1118 | 3319 |
| 1489 | 690938899477221376 | 1754 | 3776 |
| 1490 | 690932576555528194 | 910 | 3031 |
| 1491 | 690735892932222976 | 1155 | 3507 |
| 1492 | 690728923253055490 | 466 | 2006 |
| 1493 | 690690673629138944 | 751 | 2156 |
| 1494 | 690649993829576704 | 250 | 1202 |
| 1495 | 690607260360429569 | 14 | 279 |
| 1496 | 690597161306841088 | 548 | 1789 |
| 1497 | 690400367696297985 | 406 | 1745 |
| 1498 | 690374419777196032 | 763 | 2974 |
| 1499 | 690360449368465409 | 795 | 2455 |
| 1500 | 690348396616552449 | 463 | 1372 |
| 1501 | 690248561355657216 | 370 | 1543 |
| 1502 | 690021994562220032 | 923 | 2584 |
| 1503 | 690015576308211712 | 662 | 2312 |
| 1504 | 690005060500217858 | 1539 | 3391 |
| 1505 | 689999384604450816 | 329 | 1306 |
| 1506 | 689993469801164801 | 407 | 1348 |
| 1507 | 689977555533848577 | 410 | 1271 |
| 1508 | 689905486972461056 | 623 | 2262 |
| 1509 | 689877686181715968 | 1045 | 2805 |
| 1510 | 689835978131935233 | 689 | 2018 |
| 1511 | 689661964914655233 | 852 | 3001 |
| 1512 | 689659372465688576 | 3482 | 9538 |
| 1513 | 689623661272240129 | 581 | 2043 |
| 1514 | 689599056876867584 | 5028 | 10784 |
| 1515 | 689557536375177216 | 404 | 1903 |
| 1516 | 689517482558820352 | 1299 | 3134 |
| 1517 | 689289219123089408 | 849 | 2074 |
| 1518 | 689283819090870273 | 1005 | 3024 |
| 1519 | 689280876073582592 | 642 | 1826 |
| 1520 | 689275259254616065 | 225 | 1055 |
| 1521 | 689255633275777024 | 978 | 2355 |
| 1522 | 689154315265683456 | 898 | 2860 |
| 1523 | 689143371370250240 | 456 | 1866 |
| 1524 | 688916208532455424 | 773 | 2501 |
| 1525 | 688908934925697024 | 708 | 1942 |
| 1526 | 688898160958271489 | 711 | 1933 |
| 1527 | 688894073864884227 | 622 | 2061 |
| 1528 | 688828561667567616 | 325 | 1277 |
| 1529 | 688804835492233216 | 170 | 889 |
| 1530 | 688789766343622656 | 604 | 2059 |
| 1531 | 688547210804498433 | 627 | 2403 |
| 1532 | 688519176466644993 | 660 | 2153 |
| 1533 | 688385280030670848 | 4083 | 8563 |
| 1534 | 688211956440801280 | 759 | 2081 |
| 1535 | 688179443353796608 | 532 | 1980 |
| 1536 | 688116655151435777 | 700 | 2615 |
| 1537 | 688064179421470721 | 324 | 1600 |
| 1538 | 687841446767013888 | 2255 | 5024 |
| 1539 | 687826841265172480 | 1012 | 2524 |
| 1540 | 687818504314159109 | 866 | 2280 |
| 1541 | 687807801670897665 | 660 | 2200 |
| 1542 | 687732144991551489 | 597 | 1625 |
| 1543 | 687704180304273409 | 767 | 2246 |
| 1544 | 687664829264453632 | 471 | 1801 |
| 1545 | 687494652870668288 | 529 | 1760 |
| 1546 | 687480748861947905 | 222 | 1476 |
| 1547 | 687476254459715584 | 483 | 1832 |
| 1548 | 687460506001633280 | 492 | 1907 |
| 1549 | 687399393394311168 | 555 | 1752 |
| 1550 | 687317306314240000 | 8357 | 18671 |
| 1551 | 687312378585812992 | 1735 | 4016 |
| 1552 | 687127927494963200 | 2054 | 4978 |
| 1553 | 687124485711986689 | 462 | 2021 |
| 1554 | 687109925361856513 | 2236 | 5366 |
| 1555 | 687102708889812993 | 872 | 2169 |
| 1556 | 687096057537363968 | 552 | 2079 |
| 1557 | 686947101016735744 | 2903 | 7994 |
| 1558 | 686760001961103360 | 1258 | 3240 |
| 1559 | 686749460672679938 | 1320 | 3204 |
| 1560 | 686730991906516992 | 1090 | 3813 |
| 1561 | 686683045143953408 | 733 | 2610 |
| 1562 | 686618349602762752 | 1239 | 3414 |
| 1563 | 686606069955735556 | 492 | 1753 |
| 1564 | 686394059078897668 | 632 | 1596 |
| 1565 | 686386521809772549 | 791 | 3011 |
| 1566 | 686377065986265092 | 514 | 2051 |
| 1567 | 686358356425093120 | 602 | 1999 |
| 1568 | 686286779679375361 | 1525 | 3725 |
| 1569 | 686050296934563840 | 664 | 2065 |
| 1570 | 686035780142297088 | 104 | 1062 |
| 1571 | 686034024800862208 | 1038 | 2850 |
| 1572 | 686007916130873345 | 366 | 2281 |
| 1573 | 686003207160610816 | 563 | 1683 |
| 1574 | 685973236358713344 | 477 | 1941 |
| 1575 | 685943807276412928 | 536 | 1498 |
| 1576 | 685906723014619143 | 2594 | 6906 |
| 1577 | 685681090388975616 | 110 | 1885 |
| 1578 | 685667379192414208 | 510 | 2185 |
| 1579 | 685663452032069632 | 1335 | 2975 |
| 1580 | 685641971164143616 | 700 | 2697 |
| 1581 | 685547936038666240 | 14145 | 30399 |
| 1582 | 685532292383666176 | 1047 | 2812 |
| 1583 | 685325112850124800 | 3588 | 8683 |
| 1584 | 685321586178670592 | 579 | 2445 |
| 1585 | 685315239903100929 | 944 | 3033 |
| 1586 | 685307451701334016 | 397 | 1928 |
| 1587 | 685268753634967552 | 1077 | 2843 |
| 1588 | 685198997565345792 | 589 | 2141 |
| 1589 | 685169283572338688 | 1280 | 3785 |
| 1590 | 684969860808454144 | 328 | 2217 |
| 1591 | 684959798585110529 | 2816 | 6297 |
| 1592 | 684940049151070208 | 946 | 2964 |
| 1593 | 684926975086034944 | 417 | 3225 |
| 1594 | 684914660081053696 | 1324 | 3225 |
| 1595 | 684902183876321280 | 466 | 1719 |
| 1596 | 684880619965411328 | 728 | 1924 |
| 1597 | 684830982659280897 | 19706 | 32379 |
| 1598 | 684800227459624960 | 905 | 2518 |
| 1599 | 684594889858887680 | 3170 | 8194 |
| 1600 | 684588130326986752 | 1280 | 3814 |
| 1601 | 684567543613382656 | 1105 | 2762 |
| 1602 | 684538444857667585 | 855 | 2438 |
| 1603 | 684481074559381504 | 1071 | 3571 |
| 1604 | 684460069371654144 | 503 | 1819 |
| 1605 | 684241637099323392 | 2952 | 7492 |
| 1606 | 684225744407494656 | 184 | 1148 |
| 1607 | 684222868335505415 | 1241 | 3519 |
| 1608 | 684200372118904832 | 945 | 1986 |
| 1609 | 684195085588783105 | 457 | 1764 |
| 1610 | 684188786104872960 | 1054 | 3226 |
| 1611 | 684177701129875456 | 594 | 1866 |
| 1612 | 684147889187209216 | 1371 | 2743 |
| 1613 | 684122891630342144 | 426 | 1861 |
| 1614 | 684097758874210310 | 1299 | 3797 |
| 1615 | 683857920510050305 | 1021 | 3526 |
| 1616 | 683852578183077888 | 316 | 1796 |
| 1617 | 683849932751646720 | 855 | 2415 |
| 1618 | 683834909291606017 | 1023 | 2413 |
| 1619 | 683828599284170753 | 972 | 2592 |
| 1620 | 683773439333797890 | 1221 | 3077 |
| 1621 | 683742671509258241 | 3007 | 5983 |
| 1622 | 683515932363329536 | 2618 | 6793 |
| 1623 | 683498322573824003 | 874 | 2933 |
| 1624 | 683481228088049664 | 904 | 2451 |
| 1625 | 683462770029932544 | 620 | 2239 |
| 1626 | 683449695444799489 | 1459 | 3580 |
| 1627 | 683391852557561860 | 2180 | 7054 |
| 1628 | 683357973142474752 | 824 | 2668 |
| 1629 | 683142553609318400 | 938 | 2649 |
| 1630 | 683111407806746624 | 818 | 3146 |
| 1631 | 683098815881154561 | 589 | 1999 |
| 1632 | 683078886620553216 | 520 | 1858 |
| 1633 | 683030066213818368 | 671 | 1999 |
| 1634 | 682962037429899265 | 14896 | 33822 |
| 1635 | 682808988178739200 | 154 | 1628 |
| 1636 | 682788441537560576 | 1019 | 2284 |
| 1637 | 682750546109968385 | 398 | 1405 |
| 1638 | 682697186228989953 | 332 | 1216 |
| 1639 | 682662431982772225 | 988 | 2818 |
| 1640 | 682638830361513985 | 535 | 1913 |
| 1641 | 682429480204398592 | 1046 | 3181 |
| 1642 | 682406705142087680 | 1589 | 6971 |
| 1643 | 682393905736888321 | 598 | 2077 |
| 1644 | 682389078323662849 | 424 | 1542 |
| 1645 | 682303737705140231 | 886 | 2826 |
| 1646 | 682259524040966145 | 1079 | 3815 |
| 1647 | 682242692827447297 | 1040 | 2970 |
| 1648 | 682088079302213632 | 8904 | 16802 |
| 1649 | 682059653698686977 | 1529 | 4542 |
| 1650 | 682047327939461121 | 848 | 2952 |
| 1651 | 682032003584274432 | 1795 | 6065 |
| 1652 | 682003177596559360 | 1371 | 2871 |
| 1653 | 681981167097122816 | 921 | 2598 |
| 1654 | 681891461017812993 | 746 | 2273 |
| 1655 | 681694085539872773 | 3694 | 11816 |
| 1656 | 681679526984871937 | 400 | 1626 |
| 1657 | 681654059175129088 | 819 | 2424 |
| 1658 | 681610798867845120 | 418 | 1732 |
| 1659 | 681579835668455424 | 1178 | 3252 |
| 1660 | 681523177663676416 | 5210 | 13179 |
| 1661 | 681340665377193984 | 245 | 1515 |
| 1662 | 681339448655802368 | 3708 | 8564 |
| 1663 | 681320187870711809 | 672 | 2412 |
| 1664 | 681302363064414209 | 1624 | 3601 |
| 1665 | 681297372102656000 | 857 | 2961 |
| 1666 | 681281657291280384 | 996 | 2966 |
| 1667 | 681261549936340994 | 236 | 1334 |
| 1668 | 681242418453299201 | 470 | 1356 |
| 1669 | 681231109724700672 | 441 | 2242 |
| 1670 | 681193455364796417 | 1338 | 3421 |
| 1671 | 680970795137544192 | 585 | 2214 |
| 1672 | 680959110691590145 | 1822 | 4219 |
| 1673 | 680940246314430465 | 937 | 2924 |
| 1674 | 680934982542561280 | 394 | 1920 |
| 1675 | 680913438424612864 | 563 | 2213 |
| 1676 | 680889648562991104 | 326 | 1612 |
| 1677 | 680836378243002368 | 1185 | 3190 |
| 1678 | 680805554198020098 | 607 | 1980 |
| 1679 | 680801747103793152 | 741 | 2190 |
| 1680 | 680798457301471234 | 938 | 2606 |
| 1681 | 680609293079592961 | 628 | 2414 |
| 1682 | 680583894916304897 | 1192 | 3309 |
| 1683 | 680497766108381184 | 1734 | 3891 |
| 1684 | 680494726643068929 | 440 | 1573 |
| 1685 | 680473011644985345 | 673 | 2345 |
| 1686 | 680440374763077632 | 443 | 1329 |
| 1687 | 680221482581123072 | 261 | 1360 |
| 1688 | 680206703334408192 | 1048 | 2592 |
| 1689 | 680191257256136705 | 441 | 1981 |
| 1690 | 680176173301628928 | 1397 | 3562 |
| 1691 | 680161097740095489 | 672 | 2141 |
| 1692 | 680145970311643136 | 1561 | 3313 |
| 1693 | 680130881361686529 | 857 | 2117 |
| 1694 | 680115823365742593 | 828 | 2495 |
| 1695 | 680100725817409536 | 1252 | 3301 |
| 1696 | 680085611152338944 | 8149 | 11759 |
| 1697 | 680070545539371008 | 776 | 2388 |
| 1698 | 679877062409191424 | 581 | 1798 |
| 1699 | 679872969355714560 | 598 | 2008 |
| 1700 | 679862121895714818 | 557 | 2251 |
| 1701 | 679854723806179328 | 1102 | 2610 |
| 1702 | 679844490799091713 | 687 | 2185 |
| 1703 | 679828447187857408 | 12602 | 33174 |
| 1704 | 679777920601223168 | 997 | 2856 |
| 1705 | 679736210798047232 | 718 | 1915 |
| 1706 | 679729593985699840 | 749 | 1990 |
| 1707 | 679722016581222400 | 426 | 1538 |
| 1708 | 679530280114372609 | 1885 | 4375 |
| 1709 | 679527802031484928 | 653 | 2427 |
| 1710 | 679511351870550016 | 1147 | 3073 |
| 1711 | 679503373272485890 | 1338 | 2917 |
| 1712 | 679475951516934144 | 585 | 1926 |
| 1713 | 679462823135686656 | 17018 | 29427 |
| 1714 | 679405845277462528 | 1073 | 2165 |
| 1715 | 679158373988876288 | 7247 | 19436 |
| 1716 | 679148763231985668 | 926 | 2554 |
| 1717 | 679132435750195208 | 1035 | 2706 |
| 1718 | 679111216690831360 | 2314 | 5436 |
| 1719 | 679062614270468097 | 7213 | 15486 |
| 1720 | 679047485189439488 | 587 | 2057 |
| 1721 | 679001094530465792 | 1095 | 2597 |
| 1722 | 678991772295516161 | 1017 | 2069 |
| 1723 | 678969228704284672 | 409 | 1498 |
| 1724 | 678800283649069056 | 821 | 2354 |
| 1725 | 678798276842360832 | 1030 | 3164 |
| 1726 | 678774928607469569 | 821 | 2573 |
| 1727 | 678767140346941444 | 1228 | 3222 |
| 1728 | 678764513869611008 | 416 | 1479 |
| 1729 | 678755239630127104 | 2933 | 6488 |
| 1730 | 678740035362037760 | 1489 | 3404 |
| 1731 | 678708137298427904 | 2190 | 5130 |
| 1732 | 678675843183484930 | 1320 | 2606 |
| 1733 | 678643457146150913 | 360 | 1878 |
| 1734 | 678446151570427904 | 1372 | 3652 |
| 1735 | 678424312106393600 | 2278 | 5002 |
| 1736 | 678410210315247616 | 1611 | 3826 |
| 1737 | 678399652199309312 | 28567 | 73491 |
| 1738 | 678396796259975168 | 374 | 1457 |
| 1739 | 678389028614488064 | 383 | 1714 |
| 1740 | 678380236862578688 | 823 | 2240 |
| 1741 | 678341075375947776 | 473 | 1574 |
| 1742 | 678334497360859136 | 224 | 1182 |
| 1743 | 678278586130948096 | 5496 | 10416 |
| 1744 | 678255464182861824 | 328 | 1451 |
| 1745 | 678023323247357953 | 341 | 1742 |
| 1746 | 678021115718029313 | 5635 | 12380 |
| 1747 | 677961670166224897 | 1524 | 3135 |
| 1748 | 677918531514703872 | 364 | 1217 |
| 1749 | 677895101218201600 | 1845 | 4397 |
| 1750 | 677716515794329600 | 877 | 2784 |
| 1751 | 677700003327029250 | 1291 | 3114 |
| 1752 | 677698403548192770 | 286 | 1117 |
| 1753 | 677687604918272002 | 755 | 2260 |
| 1754 | 677673981332312066 | 1350 | 3035 |
| 1755 | 677662372920729601 | 843 | 1778 |
| 1756 | 677644091929329666 | 727 | 1712 |
| 1757 | 677573743309385728 | 600 | 1939 |
| 1758 | 677565715327688705 | 411 | 1191 |
| 1759 | 677557565589463040 | 1017 | 2222 |
| 1760 | 677547928504967168 | 3296 | 6327 |
| 1761 | 677530072887205888 | 204 | 967 |
| 1762 | 677335745548390400 | 1550 | 2763 |
| 1763 | 677334615166730240 | 253 | 1228 |
| 1764 | 677331501395156992 | 209 | 987 |
| 1765 | 677328882937298944 | 1345 | 3337 |
| 1766 | 677314812125323265 | 471 | 1498 |
| 1767 | 677301033169788928 | 354 | 1114 |
| 1768 | 677269281705472000 | 636 | 1798 |
| 1769 | 677228873407442944 | 1467 | 3210 |
| 1770 | 677187300187611136 | 812 | 2485 |
| 1771 | 676975532580409345 | 951 | 2528 |
| 1772 | 676957860086095872 | 719 | 2028 |
| 1773 | 676949632774234114 | 348 | 1188 |
| 1774 | 676948236477857792 | 776 | 1960 |
| 1775 | 676946864479084545 | 327 | 1576 |
| 1776 | 676942428000112642 | 668 | 1875 |
| 1777 | 676936541936185344 | 4432 | 11625 |
| 1778 | 676916996760600576 | 1615 | 2696 |
| 1779 | 676897532954456065 | 649 | 2052 |
| 1780 | 676864501615042560 | 628 | 1900 |
| 1781 | 676821958043033607 | 13792 | 20734 |
| 1782 | 676819651066732545 | 602 | 1656 |
| 1783 | 676811746707918848 | 379 | 1305 |
| 1784 | 676776431406465024 | 1805 | 4529 |
| 1785 | 676617503762681856 | 855 | 2614 |
| 1786 | 676613908052996102 | 176 | 986 |
| 1787 | 676606785097199616 | 387 | 1724 |
| 1788 | 676603393314578432 | 340 | 1043 |
| 1789 | 676593408224403456 | 1892 | 4139 |
| 1790 | 676590572941893632 | 110 | 841 |
| 1791 | 676588346097852417 | 701 | 2086 |
| 1792 | 676582956622721024 | 252 | 1082 |
| 1793 | 676575501977128964 | 989 | 2334 |
| 1794 | 676533798876651520 | 490 | 1700 |
| 1795 | 676496375194980353 | 470 | 1374 |
| 1796 | 676470639084101634 | 4181 | 10584 |
| 1797 | 676440007570247681 | 590 | 1565 |
| 1798 | 676430933382295552 | 302 | 1264 |
| 1799 | 676263575653122048 | 484 | 1895 |
| 1800 | 676237365392908289 | 251 | 1089 |
| 1801 | 676219687039057920 | 27775 | 70941 |
| 1802 | 676215927814406144 | 516 | 1571 |
| 1803 | 676191832485810177 | 919 | 2058 |
| 1804 | 676146341966438401 | 590 | 1754 |
| 1805 | 676121918416756736 | 1028 | 1966 |
| 1806 | 676101918813499392 | 1051 | 2585 |
| 1807 | 676098748976615425 | 1250 | 2681 |
| 1808 | 676089483918516224 | 392 | 1181 |
| 1809 | 675898130735476737 | 505 | 1446 |
| 1810 | 675891555769696257 | 765 | 1923 |
| 1811 | 675888385639251968 | 841 | 2121 |
| 1812 | 675878199931371520 | 1243 | 3780 |
| 1813 | 675870721063669760 | 500 | 1470 |
| 1814 | 675853064436391936 | 1136 | 2426 |
| 1815 | 675849018447167488 | 123 | 865 |
| 1816 | 675845657354215424 | 780 | 2046 |
| 1817 | 675822767435051008 | 475 | 1383 |
| 1818 | 675820929667219457 | 208 | 956 |
| 1819 | 675798442703122432 | 3046 | 9318 |
| 1820 | 675781562965868544 | 420 | 1459 |
| 1821 | 675740360753160193 | 295 | 1060 |
| 1822 | 675710890956750848 | 721 | 1693 |
| 1823 | 675707330206547968 | 600 | 1786 |
| 1824 | 675706639471788032 | 86 | 583 |
| 1825 | 675534494439489536 | 363 | 1663 |
| 1826 | 675531475945709568 | 331 | 1068 |
| 1827 | 675522403582218240 | 248 | 942 |
| 1828 | 675517828909424640 | 407 | 1151 |
| 1829 | 675501075957489664 | 5222 | 15558 |
| 1830 | 675497103322386432 | 1136 | 2825 |
| 1831 | 675489971617296384 | 528 | 1153 |
| 1832 | 675483430902214656 | 855 | 1666 |
| 1833 | 675432746517426176 | 503 | 1362 |
| 1834 | 675372240448454658 | 458 | 1530 |
| 1835 | 675362609739206656 | 196 | 942 |
| 1836 | 675354435921575936 | 14897 | 29491 |
| 1837 | 675349384339542016 | 2001 | 3533 |
| 1838 | 675334060156301312 | 1134 | 2488 |
| 1839 | 675166823650848770 | 1387 | 3179 |
| 1840 | 675153376133427200 | 2265 | 5601 |
| 1841 | 675149409102012420 | 1501 | 3355 |
| 1842 | 675147105808306176 | 200 | 842 |
| 1843 | 675146535592706048 | 257 | 1055 |
| 1844 | 675145476954566656 | 782 | 1917 |
| 1845 | 675135153782571009 | 413 | 1165 |
| 1846 | 675113801096802304 | 688 | 1739 |
| 1847 | 675111688094527488 | 214 | 867 |
| 1848 | 675109292475830276 | 999 | 2521 |
| 1849 | 675047298674663426 | 275 | 929 |
| 1850 | 675015141583413248 | 1047 | 2423 |
| 1851 | 675006312288268288 | 201 | 876 |
| 1852 | 675003128568291329 | 406 | 1393 |
| 1853 | 674999807681908736 | 956 | 1994 |
| 1854 | 674805413498527744 | 318 | 762 |
| 1855 | 674800520222154752 | 749 | 2704 |
| 1856 | 674793399141146624 | 954 | 2223 |
| 1857 | 674790488185167872 | 219 | 985 |
| 1858 | 674788554665512960 | 181 | 719 |
| 1859 | 674781762103414784 | 1050 | 1807 |
| 1860 | 674774481756377088 | 411 | 990 |
| 1861 | 674767892831932416 | 692 | 1631 |
| 1862 | 674764817387900928 | 200 | 700 |
| 1863 | 674754018082705410 | 384 | 1229 |
| 1864 | 674752233200820224 | 401 | 1312 |
| 1865 | 674743008475090944 | 466 | 1260 |
| 1866 | 674742531037511680 | 45 | 432 |
| 1867 | 674739953134403584 | 327 | 970 |
| 1868 | 674737130913071104 | 80 | 580 |
| 1869 | 674690135443775488 | 412 | 1026 |
| 1870 | 674670581682434048 | 567 | 1448 |
| 1871 | 674664755118911488 | 205 | 813 |
| 1872 | 674646392044941312 | 430 | 1282 |
| 1873 | 674644256330530816 | 242 | 929 |
| 1874 | 674638615994089473 | 512 | 1519 |
| 1875 | 674632714662858753 | 503 | 1344 |
| 1876 | 674606911342424069 | 86 | 841 |
| 1877 | 674468880899788800 | 1784 | 5565 |
| 1878 | 674447403907457024 | 315 | 957 |
| 1879 | 674436901579923456 | 344 | 987 |
| 1880 | 674422304705744896 | 466 | 1285 |
| 1881 | 674416750885273600 | 117 | 611 |
| 1882 | 674410619106390016 | 402 | 1069 |
| 1883 | 674394782723014656 | 488 | 1336 |
| 1884 | 674372068062928900 | 280 | 767 |
| 1885 | 674330906434379776 | 66 | 505 |
| 1886 | 674318007229923329 | 450 | 1251 |
| 1887 | 674307341513269249 | 6041 | 10148 |
| 1888 | 674291837063053312 | 5143 | 13195 |
| 1889 | 674271431610523648 | 645 | 1393 |
| 1890 | 674269164442398721 | 202 | 824 |
| 1891 | 674265582246694913 | 733 | 1463 |
| 1892 | 674262580978937856 | 386 | 1181 |
| 1893 | 674255168825880576 | 466 | 1306 |
| 1894 | 674082852460433408 | 144 | 682 |
| 1895 | 674075285688614912 | 246 | 889 |
| 1896 | 674063288070742018 | 1911 | 5732 |
| 1897 | 674053186244734976 | 1130 | 2953 |
| 1898 | 674051556661161984 | 432 | 1293 |
| 1899 | 674045139690631169 | 566 | 1268 |
| 1900 | 674042553264685056 | 110 | 636 |
| 1901 | 674038233588723717 | 368 | 980 |
| 1902 | 674036086168010753 | 181 | 761 |
| 1903 | 674024893172875264 | 1087 | 1584 |
| 1904 | 674019345211760640 | 265 | 1015 |
| 1905 | 674014384960745472 | 560 | 1389 |
| 1906 | 674008982932058114 | 300 | 1082 |
| 1907 | 673956914389192708 | 838 | 1751 |
| 1908 | 673919437611909120 | 327 | 1056 |
| 1909 | 673906403526995968 | 1437 | 2850 |
| 1910 | 673887867907739649 | 221 | 842 |
| 1911 | 673716320723169284 | 669 | 2788 |
| 1912 | 673715861853720576 | 1813 | 3172 |
| 1913 | 673711475735838725 | 265 | 941 |
| 1914 | 673709992831262724 | 236 | 754 |
| 1915 | 673708611235921920 | 256 | 954 |
| 1916 | 673707060090052608 | 346 | 990 |
| 1917 | 673705679337693185 | 359 | 1125 |
| 1918 | 673700254269775872 | 501 | 1282 |
| 1919 | 673697980713705472 | 1697 | 3514 |
| 1920 | 673689733134946305 | 569 | 1546 |
| 1921 | 673688752737402881 | 440 | 1126 |
| 1922 | 673686845050527744 | 377 | 1277 |
| 1923 | 673680198160809984 | 418 | 1230 |
| 1924 | 673662677122719744 | 328 | 1129 |
| 1925 | 673656262056419329 | 199 | 650 |
| 1926 | 673636718965334016 | 308 | 995 |
| 1927 | 673612854080196609 | 632 | 1427 |
| 1928 | 673583129559498752 | 313 | 1067 |
| 1929 | 673580926094458881 | 239 | 739 |
| 1930 | 673576835670777856 | 488 | 1235 |
| 1931 | 673363615379013632 | 267 | 932 |
| 1932 | 673359818736984064 | 593 | 1288 |
| 1933 | 673355879178194945 | 493 | 1346 |
| 1934 | 673352124999274496 | 475 | 1496 |
| 1935 | 673350198937153538 | 185 | 685 |
| 1936 | 673345638550134785 | 1103 | 2232 |
| 1937 | 673343217010679808 | 235 | 858 |
| 1938 | 673342308415348736 | 492 | 1139 |
| 1939 | 673320132811366400 | 6891 | 11976 |
| 1940 | 673317986296586240 | 216 | 781 |
| 1941 | 673295268553605120 | 2752 | 6732 |
| 1942 | 673270968295534593 | 313 | 959 |
| 1943 | 673240798075449344 | 617 | 1280 |
| 1944 | 673213039743795200 | 724 | 1975 |
| 1945 | 673148804208660480 | 549 | 1493 |
| 1946 | 672997845381865473 | 631 | 1755 |
| 1947 | 672995267319328768 | 253 | 843 |
| 1948 | 672988786805112832 | 254 | 878 |
| 1949 | 672984142909456390 | 471 | 1120 |
| 1950 | 672980819271634944 | 891 | 1628 |
| 1951 | 672975131468300288 | 782 | 1500 |
| 1952 | 672970152493887488 | 305 | 840 |
| 1953 | 672968025906282496 | 471 | 1184 |
| 1954 | 672964561327235073 | 557 | 1261 |
| 1955 | 672902681409806336 | 424 | 1234 |
| 1956 | 672898206762672129 | 363 | 795 |
| 1957 | 672884426393653248 | 731 | 1369 |
| 1958 | 672877615439593473 | 301 | 908 |
| 1959 | 672834301050937345 | 503 | 1157 |
| 1960 | 672828477930868736 | 419 | 1109 |
| 1961 | 672640509974827008 | 271 | 875 |
| 1962 | 672622327801233409 | 423 | 1149 |
| 1963 | 672614745925664768 | 512 | 1089 |
| 1964 | 672609152938721280 | 338 | 970 |
| 1965 | 672604026190569472 | 337 | 973 |
| 1966 | 672594978741354496 | 531 | 1179 |
| 1967 | 672591762242805761 | 285 | 846 |
| 1968 | 672591271085670400 | 157 | 641 |
| 1969 | 672538107540070400 | 318 | 903 |
| 1970 | 672523490734551040 | 146 | 551 |
| 1971 | 672488522314567680 | 372 | 990 |
| 1972 | 672482722825261057 | 519 | 992 |
| 1973 | 672481316919734272 | 110 | 639 |
| 1974 | 672475084225949696 | 608 | 1298 |
| 1975 | 672466075045466113 | 448 | 1193 |
| 1976 | 672272411274932228 | 2933 | 5724 |
| 1977 | 672267570918129665 | 538 | 1317 |
| 1978 | 672264251789176834 | 287 | 1012 |
| 1979 | 672256522047614977 | 1329 | 2514 |
| 1980 | 672254177670729728 | 652 | 1277 |
| 1981 | 672248013293752320 | 524 | 1531 |
| 1982 | 672245253877968896 | 132 | 607 |
| 1983 | 672239279297454080 | 275 | 806 |
| 1984 | 672231046314901505 | 876 | 1624 |
| 1985 | 672222792075620352 | 176 | 703 |
| 1986 | 672205392827572224 | 1009 | 1991 |
| 1987 | 672169685991993344 | 319 | 908 |
| 1988 | 672160042234327040 | 304 | 767 |
| 1989 | 672139350159835138 | 597 | 1546 |
| 1990 | 672125275208069120 | 993 | 2118 |
| 1991 | 672095186491711488 | 328 | 878 |
| 1992 | 672082170312290304 | 319 | 838 |
| 1993 | 672068090318987265 | 441 | 1141 |
| 1994 | 671896809300709376 | 3677 | 7621 |
| 1995 | 671891728106971137 | 483 | 1176 |
| 1996 | 671882082306625538 | 1213 | 3109 |
| 1997 | 671879137494245376 | 575 | 1247 |
| 1998 | 671874878652489728 | 479 | 1107 |
| 1999 | 671866342182637568 | 420 | 997 |
| 2000 | 671855973984772097 | 374 | 793 |
| 2001 | 671789708968640512 | 3002 | 6323 |
| 2002 | 671768281401958400 | 435 | 1051 |
| 2003 | 671763349865160704 | 776 | 1497 |
| 2004 | 671744970634719232 | 666 | 1211 |
| 2005 | 671743150407421952 | 201 | 675 |
| 2006 | 671735591348891648 | 657 | 1286 |
| 2007 | 671729906628341761 | 3806 | 7493 |
| 2008 | 671561002136281088 | 6323 | 11393 |
| 2009 | 671550332464455680 | 183 | 810 |
| 2010 | 671547767500775424 | 499 | 1205 |
| 2011 | 671544874165002241 | 889 | 1728 |
| 2012 | 671542985629241344 | 486 | 966 |
| 2013 | 671538301157904385 | 336 | 836 |
| 2014 | 671536543010570240 | 344 | 1037 |
| 2015 | 671533943490011136 | 497 | 897 |
| 2016 | 671528761649688577 | 216 | 739 |
| 2017 | 671520732782923777 | 454 | 1221 |
| 2018 | 671518598289059840 | 253 | 833 |
| 2019 | 671511350426865664 | 606 | 1427 |
| 2020 | 671504605491109889 | 3128 | 6243 |
| 2021 | 671497587707535361 | 390 | 827 |
| 2022 | 671488513339211776 | 415 | 884 |
| 2023 | 671486386088865792 | 173 | 512 |
| 2024 | 671485057807351808 | 196 | 678 |
| 2025 | 671390180817915904 | 653 | 1280 |
| 2026 | 671362598324076544 | 258 | 978 |
| 2027 | 671357843010908160 | 133 | 351 |
| 2028 | 671355857343524864 | 105 | 421 |
| 2029 | 671347597085433856 | 371 | 835 |
| 2030 | 671186162933985280 | 176 | 641 |
| 2031 | 671182547775299584 | 284 | 979 |
| 2032 | 671166507850801152 | 302 | 782 |
| 2033 | 671163268581498880 | 967 | 1458 |
| 2034 | 671159727754231808 | 68 | 313 |
| 2035 | 671154572044468225 | 186 | 624 |
| 2036 | 671151324042559489 | 128 | 587 |
| 2037 | 671147085991960577 | 192 | 585 |
| 2038 | 671141549288370177 | 572 | 1024 |
| 2039 | 671138694582165504 | 343 | 823 |
| 2040 | 671134062904504320 | 162 | 654 |
| 2041 | 671122204919246848 | 2189 | 3087 |
| 2042 | 671115716440031232 | 673 | 1218 |
| 2043 | 671109016219725825 | 378 | 1003 |
| 2044 | 670995969505435648 | 244 | 970 |
| 2045 | 670842764863651840 | 7576 | 22081 |
| 2046 | 670840546554966016 | 166 | 524 |
| 2047 | 670838202509447168 | 599 | 984 |
| 2048 | 670833812859932673 | 109 | 382 |
| 2049 | 670832455012716544 | 184 | 647 |
| 2050 | 670826280409919488 | 3514 | 4872 |
| 2051 | 670823764196741120 | 161 | 677 |
| 2052 | 670822709593571328 | 83 | 544 |
| 2053 | 670815497391357952 | 1321 | 2785 |
| 2054 | 670811965569282048 | 231 | 984 |
| 2055 | 670807719151067136 | 428 | 1051 |
| 2056 | 670804601705242624 | 820 | 1738 |
| 2057 | 670803562457407488 | 78 | 302 |
| 2058 | 670797304698376195 | 203 | 661 |
| 2059 | 670792680469889025 | 238 | 733 |
| 2060 | 670789397210615808 | 210 | 584 |
| 2061 | 670786190031921152 | 171 | 529 |
| 2062 | 670783437142401025 | 331 | 725 |
| 2063 | 670782429121134593 | 660 | 1350 |
| 2064 | 670780561024270336 | 249 | 701 |
| 2065 | 670778058496974848 | 62 | 298 |
| 2066 | 670764103623966721 | 371 | 957 |
| 2067 | 670755717859713024 | 89 | 393 |
| 2068 | 670733412878163972 | 446 | 850 |
| 2069 | 670727704916926465 | 314 | 736 |
| 2070 | 670717338665226240 | 418 | 1053 |
| 2071 | 670704688707301377 | 319 | 687 |
| 2072 | 670691627984359425 | 209 | 520 |
| 2073 | 670679630144274432 | 243 | 665 |
| 2074 | 670676092097810432 | 35 | 215 |
| 2075 | 670668383499735048 | 4323 | 9465 |
| 2076 | 670474236058800128 | 632 | 1340 |
| 2077 | 670468609693655041 | 77 | 317 |
| 2078 | 670465786746662913 | 467 | 855 |
| 2079 | 670452855871037440 | 174 | 489 |
| 2080 | 670449342516494336 | 569 | 1075 |
| 2081 | 670444955656130560 | 1746 | 6062 |
| 2082 | 670442337873600512 | 175 | 581 |
| 2083 | 670435821946826752 | 437 | 940 |
| 2084 | 670434127938719744 | 562 | 1255 |
| 2085 | 670433248821026816 | 100 | 296 |
| 2086 | 670428280563085312 | 524 | 1232 |
| 2087 | 670427002554466305 | 142 | 464 |
| 2088 | 670421925039075328 | 552 | 1148 |
| 2089 | 670420569653809152 | 265 | 540 |
| 2090 | 670417414769758208 | 281 | 501 |
| 2091 | 670411370698022913 | 771 | 1795 |
| 2092 | 670408998013820928 | 187 | 485 |
| 2093 | 670403879788544000 | 130 | 377 |
| 2094 | 670385711116361728 | 173 | 493 |
| 2095 | 670374371102445568 | 238 | 669 |
| 2096 | 670361874861563904 | 55 | 288 |
| 2097 | 670338931251150849 | 96 | 374 |
| 2098 | 670319130621435904 | 1067 | 3468 |
| 2099 | 670303360680108032 | 107 | 382 |
| 2100 | 670290420111441920 | 250 | 623 |
| 2101 | 670093938074779648 | 277 | 911 |
| 2102 | 670086499208155136 | 218 | 622 |
| 2103 | 670079681849372674 | 1057 | 1958 |
| 2104 | 670073503555706880 | 681 | 1386 |
| 2105 | 670069087419133954 | 205 | 554 |
| 2106 | 670061506722140161 | 290 | 669 |
| 2107 | 670055038660800512 | 279 | 592 |
| 2108 | 670046952931721218 | 152 | 576 |
| 2109 | 670040295598354432 | 97 | 659 |
| 2110 | 670037189829525505 | 240 | 527 |
| 2111 | 670003130994700288 | 77 | 296 |
| 2112 | 669993076832759809 | 70 | 288 |
| 2113 | 669972011175813120 | 134 | 395 |
| 2114 | 669970042633789440 | 43 | 272 |
| 2115 | 669942763794931712 | 133 | 443 |
| 2116 | 669926384437997569 | 81 | 339 |
| 2117 | 669923323644657664 | 50 | 202 |
| 2118 | 669753178989142016 | 341 | 709 |
| 2119 | 669749430875258880 | 55 | 228 |
| 2120 | 669684865554620416 | 75 | 448 |
| 2121 | 669683899023405056 | 94 | 339 |
| 2122 | 669682095984410625 | 116 | 312 |
| 2123 | 669680153564442624 | 244 | 588 |
| 2124 | 669661792646373376 | 367 | 714 |
| 2125 | 669625907762618368 | 1569 | 3125 |
| 2126 | 669603084620980224 | 316 | 846 |
| 2127 | 669597912108789760 | 133 | 447 |
| 2128 | 669583744538451968 | 803 | 1323 |
| 2129 | 669573570759163904 | 120 | 388 |
| 2130 | 669571471778410496 | 882 | 1409 |
| 2131 | 669567591774625800 | 45 | 202 |
| 2132 | 669564461267722241 | 104 | 337 |
| 2133 | 669393256313184256 | 62 | 313 |
| 2134 | 669375718304980992 | 632 | 1178 |
| 2135 | 669371483794317312 | 148 | 438 |
| 2136 | 669367896104181761 | 130 | 406 |
| 2137 | 669363888236994561 | 202 | 558 |
| 2138 | 669359674819481600 | 103 | 332 |
| 2139 | 669354382627049472 | 1095 | 2392 |
| 2140 | 669353438988365824 | 227 | 566 |
| 2141 | 669351434509529089 | 157 | 381 |
| 2142 | 669328503091937280 | 367 | 907 |
| 2143 | 669327207240699904 | 102 | 498 |
| 2144 | 669324657376567296 | 182 | 440 |
| 2145 | 669216679721873412 | 348 | 1058 |
| 2146 | 669214165781868544 | 135 | 385 |
| 2147 | 669203728096960512 | 408 | 890 |
| 2148 | 669037058363662336 | 265 | 573 |
| 2149 | 669015743032369152 | 324 | 650 |
| 2150 | 669006782128353280 | 209 | 510 |
| 2151 | 669000397445533696 | 5524 | 18684 |
| 2152 | 668994913074286592 | 191 | 391 |
| 2153 | 668992363537309700 | 292 | 658 |
| 2154 | 668989615043424256 | 288 | 596 |
| 2155 | 668988183816871936 | 389 | 800 |
| 2156 | 668986018524233728 | 140 | 479 |
| 2157 | 668981893510119424 | 259 | 483 |
| 2158 | 668979806671884288 | 294 | 705 |
| 2159 | 668975677807423489 | 496 | 1156 |
| 2160 | 668967877119254528 | 18 | 127 |
| 2161 | 668960084974809088 | 210 | 620 |
| 2162 | 668955713004314625 | 63 | 241 |
| 2163 | 668932921458302977 | 50 | 227 |
| 2164 | 668902994700836864 | 88 | 276 |
| 2165 | 668892474547511297 | 126 | 354 |
| 2166 | 668872652652679168 | 268 | 477 |
| 2167 | 668852170888998912 | 139 | 409 |
| 2168 | 668826086256599040 | 112 | 384 |
| 2169 | 668815180734689280 | 226 | 493 |
| 2170 | 668779399630725120 | 325 | 627 |
| 2171 | 668655139528511488 | 189 | 474 |
| 2172 | 668645506898350081 | 457 | 774 |
| 2173 | 668643542311546881 | 447 | 788 |
| 2174 | 668641109086707712 | 466 | 944 |
| 2175 | 668636665813057536 | 435 | 922 |
| 2176 | 668633411083464705 | 1381 | 2466 |
| 2177 | 668631377374486528 | 280 | 618 |
| 2178 | 668627278264475648 | 97 | 281 |
| 2179 | 668625577880875008 | 111 | 330 |
| 2180 | 668623201287675904 | 654 | 1248 |
| 2181 | 668620235289837568 | 35 | 181 |
| 2182 | 668614819948453888 | 272 | 545 |
| 2183 | 668587383441514497 | 922 | 1477 |
| 2184 | 668567822092664832 | 46 | 206 |
| 2185 | 668544745690562560 | 197 | 453 |
| 2186 | 668542336805281792 | 182 | 403 |
| 2187 | 668537837512433665 | 61 | 227 |
| 2188 | 668528771708952576 | 189 | 404 |
| 2189 | 668507509523615744 | 87 | 279 |
| 2190 | 668496999348633600 | 114 | 359 |
| 2191 | 668484198282485761 | 206 | 372 |
| 2192 | 668480044826800133 | 127 | 397 |
| 2193 | 668466899341221888 | 441 | 768 |
| 2194 | 668297328638447616 | 255 | 557 |
| 2195 | 668291999406125056 | 28 | 213 |
| 2196 | 668286279830867968 | 117 | 436 |
| 2197 | 668274247790391296 | 197 | 721 |
| 2198 | 668268907921326080 | 206 | 485 |
| 2199 | 668256321989451776 | 518 | 1152 |
| 2200 | 668248472370458624 | 408 | 842 |
| 2201 | 668237644992782336 | 2425 | 5445 |
| 2202 | 668226093875376128 | 85 | 247 |
| 2203 | 668221241640230912 | 169 | 452 |
| 2204 | 668204964695683073 | 173 | 489 |
| 2205 | 668190681446379520 | 171 | 577 |
| 2206 | 668171859951755264 | 162 | 425 |
| 2207 | 668154635664932864 | 273 | 440 |
| 2208 | 668142349051129856 | 238 | 510 |
| 2209 | 668113020489474048 | 208 | 585 |
| 2210 | 667937095915278337 | 692 | 1116 |
| 2211 | 667924896115245057 | 95 | 264 |
| 2212 | 667915453470232577 | 46 | 184 |
| 2213 | 667911425562669056 | 246 | 431 |
| 2214 | 667902449697558528 | 334 | 760 |
| 2215 | 667886921285246976 | 908 | 1646 |
| 2216 | 667885044254572545 | 400 | 729 |
| 2217 | 667878741721415682 | 101 | 349 |
| 2218 | 667873844930215936 | 340 | 553 |
| 2219 | 667866724293877760 | 901 | 2717 |
| 2220 | 667861340749471744 | 69 | 221 |
| 2221 | 667832474953625600 | 55 | 255 |
| 2222 | 667806454573760512 | 417 | 931 |
| 2223 | 667801013445750784 | 82 | 283 |
| 2224 | 667793409583771648 | 286 | 609 |
| 2225 | 667782464991965184 | 211 | 363 |
| 2226 | 667773195014021121 | 44 | 204 |
| 2227 | 667766675769573376 | 185 | 373 |
| 2228 | 667728196545200128 | 127 | 325 |
| 2229 | 667724302356258817 | 268 | 424 |
| 2230 | 667550904950915073 | 28 | 0 |
| 2231 | 667550882905632768 | 25 | 0 |
| 2232 | 667549055577362432 | 1956 | 5107 |
| 2233 | 667546741521195010 | 106 | 303 |
| 2234 | 667544320556335104 | 459 | 762 |
| 2235 | 667538891197542400 | 58 | 176 |
| 2236 | 667534815156183040 | 445 | 717 |
| 2237 | 667530908589760512 | 206 | 411 |
| 2238 | 667524857454854144 | 968 | 1507 |
| 2239 | 667517642048163840 | 166 | 332 |
| 2240 | 667509364010450944 | 1865 | 6064 |
| 2241 | 667502640335572993 | 194 | 484 |
| 2242 | 667495797102141441 | 231 | 458 |
| 2243 | 667491009379606528 | 190 | 459 |
| 2244 | 667470559035432960 | 85 | 225 |
| 2245 | 667455448082227200 | 53 | 171 |
| 2246 | 667453023279554560 | 74 | 279 |
| 2247 | 667443425659232256 | 488 | 682 |
| 2248 | 667437278097252352 | 198 | 396 |
| 2249 | 667435689202614272 | 76 | 266 |
| 2250 | 667405339315146752 | 197 | 411 |
| 2251 | 667393430834667520 | 50 | 168 |
| 2252 | 667369227918143488 | 145 | 328 |
| 2253 | 667211855547486208 | 209 | 425 |
| 2254 | 667200525029539841 | 228 | 544 |
| 2255 | 667192066997374976 | 86 | 333 |
| 2256 | 667188689915760640 | 331 | 643 |
| 2257 | 667182792070062081 | 5274 | 12539 |
| 2258 | 667177989038297088 | 48 | 166 |
| 2259 | 667176164155375616 | 388 | 526 |
| 2260 | 667174963120574464 | 70 | 218 |
| 2261 | 667171260800061440 | 72 | 186 |
| 2262 | 667165590075940865 | 972 | 2380 |
| 2263 | 667160273090932737 | 50 | 219 |
| 2264 | 667152164079423490 | 14609 | 42273 |
| 2265 | 667138269671505920 | 1873 | 4008 |
| 2266 | 667119796878725120 | 106 | 286 |
| 2267 | 667090893657276420 | 106 | 287 |
| 2268 | 667073648344346624 | 104 | 351 |
| 2269 | 667070482143944705 | 13 | 72 |
| 2270 | 667065535570550784 | 40 | 143 |
| 2271 | 667062181243039745 | 45 | 192 |
| 2272 | 667044094246576128 | 43 | 163 |
| 2273 | 667012601033924608 | 187 | 393 |
| 2274 | 666996132027977728 | 79 | 214 |
| 2275 | 666983947667116034 | 846 | 2246 |
| 2276 | 666837028449972224 | 472 | 703 |
| 2277 | 666835007768551424 | 65 | 185 |
| 2278 | 666826780179869698 | 79 | 221 |
| 2279 | 666817836334096384 | 210 | 444 |
| 2280 | 666804364988780544 | 78 | 206 |
| 2281 | 666786068205871104 | 409 | 657 |
| 2282 | 666781792255496192 | 168 | 326 |
| 2283 | 666776908487630848 | 150 | 305 |
| 2284 | 666739327293083650 | 60 | 209 |
| 2285 | 666701168228331520 | 182 | 371 |
| 2286 | 666691418707132416 | 42 | 161 |
| 2287 | 666649482315059201 | 524 | 993 |
| 2288 | 666644823164719104 | 69 | 208 |
| 2289 | 666454714377183233 | 179 | 448 |
| 2290 | 666447344410484738 | 19 | 90 |
| 2291 | 666437273139982337 | 40 | 106 |
| 2292 | 666435652385423360 | 42 | 138 |
| 2293 | 666430724426358785 | 160 | 278 |
| 2294 | 666428276349472768 | 67 | 139 |
| 2295 | 666421158376562688 | 91 | 272 |
| 2296 | 666418789513326592 | 39 | 107 |
| 2297 | 666411507551481857 | 262 | 372 |
| 2298 | 666407126856765440 | 30 | 93 |
| 2299 | 666396247373291520 | 69 | 147 |
| 2300 | 666373753744588802 | 73 | 163 |
| 2301 | 666362758909284353 | 468 | 649 |
| 2302 | 666353288456101888 | 58 | 179 |
| 2303 | 666345417576210432 | 124 | 245 |
| 2304 | 666337882303524864 | 79 | 168 |
| 2305 | 666293911632134144 | 289 | 427 |
| 2306 | 666287406224695296 | 57 | 123 |
| 2307 | 666273097616637952 | 68 | 152 |
| 2308 | 666268910803644416 | 38 | 100 |
| 2309 | 666104133288665088 | 5484 | 12897 |
| 2310 | 666102155909144576 | 11 | 66 |
| 2311 | 666099513787052032 | 53 | 134 |
| 2312 | 666094000022159362 | 63 | 142 |
| 2313 | 666082916733198337 | 37 | 93 |
| 2314 | 666073100786774016 | 131 | 274 |
| 2315 | 666071193221509120 | 51 | 127 |
| 2316 | 666063827256086533 | 180 | 398 |
| 2317 | 666058600524156928 | 47 | 99 |
| 2318 | 666057090499244032 | 112 | 248 |
| 2319 | 666055525042405380 | 196 | 367 |
| 2320 | 666051853826850816 | 702 | 1027 |
| 2321 | 666050758794694657 | 50 | 115 |
| 2322 | 666049248165822465 | 37 | 89 |
| 2323 | 666044226329800704 | 115 | 247 |
| 2324 | 666033412701032449 | 36 | 100 |
| 2325 | 666029285002620928 | 39 | 112 |
| 2326 | 666020888022790149 | 422 | 2292 |
api_df.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2327 entries, 0 to 2326 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2327 non-null object 1 retweet_count 2327 non-null int64 2 favorite_count 2327 non-null int64 dtypes: int64(2), object(1) memory usage: 54.7+ KB
name column have 'a' only as a name and also have "None as a name.
Timestamp data type is not correct
several columns have missing data
Max values for rating_denominator and numerator seems extreme,
None values should be converted to NaN values
Remove html tags from source
Missing data images
arrchive dataset has retweeted data
many Id's columns
Dogtionary (explains the various stages of dog) is an observetion and it should be a row.
archive data and tweets api data shold be one table, both are(e.g each observation unit forms a table)
Image data should only have one column of the True predicted dogs and on column highest-confidence of a true prediction
#makes dataset copies
archive_clean = archive_df.copy()
image_clean = image.copy()
api_df_clean = api_df.copy()
archive_clean['timestamp'] = archive_clean['timestamp'].astype('datetime64[ns]')
archive_clean['timestamp'].dtype
dtype('<M8[ns]')
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2356 entries, 0 to 2355 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2356 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2356 non-null datetime64[ns] 4 source 2356 non-null object 5 text 2356 non-null object 6 retweeted_status_id 181 non-null float64 7 retweeted_status_user_id 181 non-null float64 8 retweeted_status_timestamp 181 non-null object 9 expanded_urls 2297 non-null object 10 rating_numerator 2356 non-null int64 11 rating_denominator 2356 non-null int64 12 name 2356 non-null object 13 doggo 2356 non-null object 14 floofer 2356 non-null object 15 pupper 2356 non-null object 16 puppo 2356 non-null object dtypes: datetime64[ns](1), float64(4), int64(3), object(9) memory usage: 313.0+ KB
none_columns = ['name', 'doggo', 'floofer', 'pupper', 'puppo']
for i in none_columns:
archive_clean[i] = archive_clean[i].replace('None', np.nan)
archive_clean['puppo'].value_counts(dropna=False)
NaN 2326 puppo 30 Name: puppo, dtype: int64
archive_clean['floofer'].value_counts(dropna=False)
NaN 2346 floofer 10 Name: floofer, dtype: int64
archive_clean['source'][1]
'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>'
import re
def cleanhtml(raw_html):
cleanr = re.compile('<.*?>')
cleantext = re.sub(cleanr, '', raw_html)
return cleantext
archive_clean['source'] = archive_clean['source'].apply(cleanhtml)
archive_clean['source'][1]
'Twitter for iPhone'
archive_clean['source'].value_counts()
Twitter for iPhone 2221 Vine - Make a Scene 91 Twitter Web Client 33 TweetDeck 11 Name: source, dtype: int64
archive_clean = archive_clean[archive_clean['retweeted_status_id'].isna()]
archive_clean.shape
(2175, 17)
archive_clean.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 2175 entries, 0 to 2355 Data columns (total 17 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2175 non-null int64 1 in_reply_to_status_id 78 non-null float64 2 in_reply_to_user_id 78 non-null float64 3 timestamp 2175 non-null datetime64[ns] 4 source 2175 non-null object 5 text 2175 non-null object 6 retweeted_status_id 0 non-null float64 7 retweeted_status_user_id 0 non-null float64 8 retweeted_status_timestamp 0 non-null object 9 expanded_urls 2117 non-null object 10 rating_numerator 2175 non-null int64 11 rating_denominator 2175 non-null int64 12 name 1495 non-null object 13 doggo 87 non-null object 14 floofer 10 non-null object 15 pupper 234 non-null object 16 puppo 25 non-null object dtypes: datetime64[ns](1), float64(4), int64(3), object(9) memory usage: 305.9+ KB
archive_clean['expanded_urls'].isna().sum()
58
archive_clean = archive_clean[~archive_clean['expanded_urls'].isna()]
archive_clean['expanded_urls'].isna().sum()
0
archive_clean.shape
(2117, 17)
archive_clean.name.value_counts(dropna=False)
NaN 622 a 55 Charlie 11 Lucy 11 Oliver 10 Cooper 10 Tucker 9 Penny 9 Lola 8 Winston 8 Sadie 8 the 8 Toby 7 Daisy 7 Bo 6 Stanley 6 Oscar 6 Koda 6 Bailey 6 an 6 Jax 6 Bella 6 Bentley 5 Milo 5 Rusty 5 Buddy 5 Scout 5 Chester 5 Leo 5 Louis 5 Dave 5 Larry 4 Archie 4 Jerry 4 Jack 4 Alfie 4 Dexter 4 Boomer 4 one 4 Phil 4 Scooter 4 Gary 4 Bear 4 Finn 4 Chip 4 Reggie 4 Maggie 4 Clark 4 very 4 Derek 4 Winnie 4 Oakley 4 Gus 4 Duke 4 Sophie 4 Sammy 4 George 4 Clarence 4 Brody 4 Jeffrey 4 Cassie 4 Louie 3 Olive 3 Ruby 3 Jimothy 3 Mia 3 Luna 3 Max 3 Beau 3 Wallace 3 Klevin 3 Zeke 3 Sunny 3 Ellie 3 just 3 Ted 3 Reginald 3 Nala 3 Shadow 3 Bruce 3 Hank 3 Gerald 3 Steven 3 Malcolm 3 Loki 3 Samson 3 Otis 3 Zoey 3 Kyle 3 Carl 3 Sebastian 3 Moose 3 Riley 3 Wilson 3 Wyatt 3 quite 3 Walter 3 Lily 3 Gizmo 3 Calvin 3 Waffles 3 Rosie 3 Vincent 3 Maximus 3 Reese 3 Earl 3 Doug 3 Sugar 2 Sansa 2 Panda 2 Coco 2 Bernie 2 Chuckles 2 Solomon 2 Peaches 2 Charles 2 Smokey 2 Flávio 2 Kilo 2 Doc 2 Lou 2 Titan 2 Misty 2 Albus 2 Moe 2 Opal 2 Oliviér 2 Rocco 2 Fred 2 Lennon 2 Brad 2 Patrick 2 Sam 2 Hunter 2 Dakota 2 Cash 2 Jimison 2 Keith 2 Aspen 2 Sarge 2 Griffin 2 Yogi 2 Coops 2 Rufus 2 Piper 2 Hammond 2 Trooper 2 Theodore 2 CeCe 2 Cody 2 Kenneth 2 Pippa 2 Rocky 2 Terry 2 Raymond 2 Mister 2 Juno 2 Arnie 2 Jiminy 2 Lincoln 2 getting 2 Atticus 2 Bob 2 Kreggory 2 Bubbles 2 Herm 2 actually 2 Churlie 2 Luca 2 Atlas 2 Chipson 2 Kreg 2 Eli 2 Alice 2 Blitz 2 Kirby 2 Belle 2 Fiona 2 Gabe 2 Nelly 2 Albert 2 Franklin 2 Thumas 2 Ash 2 Colby 2 Odie 2 Wally 2 Jeph 2 Ollie 2 Jesse 2 Paisley 2 Finley 2 Layla 2 Crystal 2 Neptune 2 Frank 2 Elliot 2 Roosevelt 2 Rory 2 Chet 2 Ava 2 Axel 2 Indie 2 Harold 2 Watson 2 Frankie 2 Linda 2 Maxaroni 2 Kevin 2 Dash 2 Marley 2 Calbert 2 Phineas 2 Pickles 2 Sampson 2 Django 2 Percy 2 Ozzy 2 Remington 2 Maddie 2 Tyr 2 Baxter 2 Lenny 2 Benji 2 Bisquick 2 Oshie 2 Hobbes 2 Curtis 2 Olivia 2 Abby 2 Benedict 2 Jackson 2 Phred 2 Keurig 2 not 2 Romeo 2 Herald 2 Sandy 2 Cupcake 2 Lorenzo 2 Penelope 2 Nugget 1 Joey 1 old 1 Blipson 1 Kenny 1 Snickers 1 Evy 1 Kane 1 Tuck 1 Geoff 1 Akumi 1 Reptar 1 Kendall 1 Aubie 1 Clybe 1 Jarod 1 Sage 1 Fillup 1 Teddy 1 Goliath 1 Kanu 1 Seamus 1 Angel 1 Todo 1 Zeus 1 Grady 1 Andy 1 Tupawc 1 Divine 1 Shakespeare 1 Tom 1 Maya 1 Lenox 1 Wafer 1 Suki 1 Edd 1 Tommy 1 Chadrick 1 Pupcasso 1 all 1 Grizzwald 1 Ivar 1 Crumpet 1 Marq 1 Jennifur 1 Iggy 1 Rubio 1 Rose 1 Kuyu 1 Pancake 1 Ebby 1 Fynn 1 Astrid 1 his 1 Dante 1 Julius 1 Dallas 1 Meera 1 Bubba 1 Bilbo 1 Bode 1 Godi 1 Mairi 1 Mollie 1 Combo 1 Dudley 1 Kellogg 1 Paull 1 Snoop 1 Carper 1 Scruffers 1 Rooney 1 Timber 1 Danny 1 Newt 1 Dale 1 Pluto 1 Stella 1 Beckham 1 Obi 1 Jameson 1 Charl 1 infuriating 1 Kaiya 1 Sid 1 Quinn 1 Thor 1 Adele 1 Maude 1 Emmie 1 Birf 1 Ralphus 1 Storkson 1 Hubertson 1 Blakely 1 Hall 1 Pawnd 1 Christoper 1 Ronnie 1 Ridley 1 Ike 1 Sierra 1 Remy 1 Poppy 1 Charleson 1 Mason 1 Shadoe 1 Snoopy 1 Butter 1 Link 1 Frönq 1 Gunner 1 Chubbs 1 Mack 1 officially 1 Arnold 1 Ember 1 Kayla 1 Kramer 1 Lucia 1 Anakin 1 Aja 1 Ferg 1 Mac 1 Flurpson 1 Cermet 1 Hamrick 1 Eve 1 Beya 1 Kathmandu 1 Kial 1 Jazz 1 Florence 1 Steve 1 Glenn 1 Cheesy 1 Tito 1 Chef 1 Hero 1 Willie 1 Izzy 1 Cannon 1 Arya 1 Tonks 1 Sunshine 1 Kloey 1 Dex 1 Klein 1 Timison 1 Zooey 1 Tedders 1 Ralphé 1 Boston 1 Monty 1 Tanner 1 Kobe 1 Humphrey 1 Jeb 1 Jaspers 1 Crimson 1 Millie 1 Halo 1 Opie 1 Nigel 1 Lillie 1 Lance 1 incredibly 1 Eevee 1 Lulu 1 Murphy 1 Godzilla 1 Rufio 1 Fabio 1 Geno 1 Trevith 1 Lassie 1 Timofy 1 Bert 1 Rey 1 Yukon 1 Tilly 1 Chase 1 Lugan 1 Strudel 1 Gustav 1 Marlee 1 Fiji 1 Bobble 1 Rizzo 1 light 1 Wishes 1 Eriq 1 JD 1 Kody 1 Jackie 1 Kulet 1 Crawford 1 Brandy 1 Cal 1 Emma 1 Peanut 1 BeBe 1 Rontu 1 Bruiser 1 Keet 1 Lizzie 1 Bonaparte 1 Ito 1 Zeek 1 Flash 1 Bronte 1 Tyrus 1 Ben 1 Hercules 1 Gilbert 1 Sweet 1 Alexanderson 1 Sonny 1 Ace 1 Coleman 1 Dutch 1 Jarvis 1 Siba 1 Trip 1 Miguel 1 Clifford 1 General 1 Jed 1 Lorelei 1 Swagger 1 Clyde 1 Schnozz 1 Blu 1 Cupid 1 Jeffri 1 this 1 Amélie 1 Simba 1 William 1 Corey 1 Herb 1 Jo 1 Edmund 1 Trigger 1 Jimbo 1 Eugene 1 Rodman 1 Rumble 1 Jett 1 DayZ 1 by 1 Vinnie 1 Saydee 1 Vinscent 1 Aqua 1 Rilo 1 Noosh 1 Molly 1 Mabel 1 Ralf 1 Karl 1 Michelangelope 1 Tug 1 Major 1 Taco 1 Karll 1 Spark 1 Mark 1 Pete 1 Aiden 1 Alfy 1 Duddles 1 Kota 1 Sparky 1 Rumpole 1 Willy 1 Maxwell 1 Beemo 1 Nico 1 Nollie 1 Striker 1 Levi 1 Jim 1 Venti 1 Liam 1 Blue 1 Margo 1 Cali 1 Willem 1 Oreo 1 Dawn 1 Gidget 1 Burt 1 Baloo 1 Jomathan 1 Jessiga 1 Boots 1 Amy 1 Claude 1 Skye 1 Superpup 1 Ralph 1 Jebberson 1 Mookie 1 Pilot 1 Loomis 1 Shelby 1 Juckson 1 Pubert 1 Blanket 1 Jonah 1 Rupert 1 Jay 1 Rodney 1 Glacier 1 Lilli 1 River 1 Mingus 1 Berb 1 Banjo 1 Stu 1 Leonidas 1 Finnegus 1 Skittles 1 Ambrose 1 Ginger 1 Harper 1 Rambo 1 Naphaniel 1 Koko 1 Cedrick 1 Yoda 1 Chaz 1 Donny 1 Kaia 1 Aldrick 1 Dixie 1 Sailer 1 Rueben 1 Enchilada 1 Harvey 1 Bloop 1 Roscoe 1 Ralphy 1 Kingsley 1 Durg 1 Tove 1 Jeffrie 1 Marvin 1 Mattie 1 Karma 1 Benny 1 Brat 1 Howie 1 Chevy 1 Barclay 1 Brandonald 1 Carll 1 Balto 1 Harry 1 Buddah 1 Sephie 1 Chesterson 1 Arlen 1 Comet 1 Filup 1 Diogi 1 Bertson 1 Rizzy 1 Stubert 1 Darla 1 life 1 Franq 1 Tater 1 Travis 1 Einstein 1 Staniel 1 Fizz 1 Huxley 1 Daniel 1 Ken 1 Taz 1 Fletcher 1 Herschel 1 Lupe 1 Goose 1 Brutus 1 Laika 1 Hermione 1 Hurley 1 Ralpher 1 Meatball 1 Sailor 1 Pherb 1 Baron 1 Grey 1 Chuck 1 Orion 1 Augie 1 Canela 1 Creg 1 Mimosa 1 Lambeau 1 Lilah 1 Brandi 1 mad 1 Mary 1 Severus 1 Grizzie 1 Jamesy 1 Vince 1 Rascal 1 Shiloh 1 Erik 1 Malikai 1 Damon 1 Griswold 1 Ricky 1 Rover 1 Rolf 1 Alejandro 1 Covach 1 Anna 1 Billl 1 Bookstore 1 Stewie 1 Rhino 1 Dewey 1 Oddie 1 Tedrick 1 Horace 1 Raphael 1 Dylan 1 Zuzu 1 Stefan 1 Perry 1 Tess 1 Mike 1 Skittle 1 Pepper 1 Happy 1 Dug 1 Cleopatricia 1 Laela 1 Coopson 1 my 1 Apollo 1 Darrel 1 Tassy 1 Cuddles 1 Gerbald 1 Spencer 1 Jareld 1 Derby 1 Bodie 1 Ralphson 1 Noah 1 space 1 Harrison 1 Ole 1 Socks 1 Snicku 1 Cora 1 Julio 1 Acro 1 Ruffles 1 Dwight 1 Beebop 1 Olaf 1 Bauer 1 Tiger 1 Brudge 1 Dotsy 1 Gòrdón 1 Bruno 1 Gin 1 Dook 1 Grizz 1 Callie 1 Maks 1 Sky 1 Wesley 1 Hanz 1 Harlso 1 Ronduh 1 Mutt 1 Ron 1 Pip 1 Monkey 1 Iroh 1 Rudy 1 Sweets 1 Dobby 1 Joshwa 1 Harnold 1 Barry 1 Bungalo 1 Richie 1 Gordon 1 Walker 1 Zoe 1 Chuq 1 Lolo 1 Sandra 1 Sprout 1 Mauve 1 Duchess 1 Fido 1 Jersey 1 Cheryl 1 Leela 1 Stephan 1 Rinna 1 Doobert 1 Patch 1 Terrance 1 Chelsea 1 Pippin 1 Ed 1 Jaycob 1 Logan 1 Norman 1 Alexander 1 Torque 1 Freddery 1 Tessa 1 Bobbay 1 Jiminus 1 Obie 1 Ashleigh 1 Alf 1 Wiggles 1 Ester 1 Ziva 1 Lacy 1 Marty 1 Hector 1 Kona 1 Barney 1 Stuart 1 Monster 1 Jerome 1 DonDon 1 Arlo 1 Mojo 1 Chompsky 1 Katie 1 Kallie 1 Pavlov 1 Brian 1 Schnitzel 1 O 1 Spanky 1 Napolean 1 Puff 1 Moofasa 1 Deacon 1 Brownie 1 Kyro 1 Strider 1 Stormy 1 Lipton 1 Dunkin 1 Jessifer 1 Scott 1 Autumn 1 Kevon 1 Luther 1 Odin 1 Georgie 1 Andru 1 Tobi 1 Shawwn 1 Bowie 1 Dot 1 Pinot 1 Philbert 1 Zara 1 Bobb 1 Dido 1 Emanuel 1 Fwed 1 Banditt 1 Carly 1 Terrenth 1 Edgar 1 Maisey 1 Eazy 1 Champ 1 Samsom 1 Jangle 1 Clarkus 1 Rorie 1 Bloo 1 Sprinkles 1 Jockson 1 Brockly 1 Mya 1 Holly 1 Tayzie 1 Mona 1 Kollin 1 Toffee 1 Livvie 1 Bell 1 Kawhi 1 Pipsy 1 Chesney 1 Billy 1 Asher 1 Betty 1 Linus 1 Eleanor 1 Reagan 1 Shnuggles 1 Sobe 1 Tango 1 Tuco 1 Gromit 1 Heinrich 1 Vixen 1 Bradlay 1 Kenzie 1 Butters 1 Theo 1 Brooks 1 Bayley 1 Robin 1 Lili 1 Mosby 1 Emmy 1 such 1 Randall 1 Shooter 1 Nida 1 Ulysses 1 Traviss 1 Willow 1 Craig 1 Petrick 1 Nimbus 1 Pablo 1 Bobby 1 Winifred 1 Amber 1 Carbon 1 Darby 1 Stark 1 Huck 1 Henry 1 Mitch 1 Berkeley 1 Jeremy 1 Bluebert 1 Stephanus 1 Tino 1 Carter 1 Bradley 1 Gustaf 1 Clarq 1 Antony 1 Miley 1 Bones 1 Lilly 1 Caryl 1 Shaggy 1 Josep 1 Colin 1 Sundance 1 Tyrone 1 Sully 1 Remus 1 Anthony 1 Tycho 1 Sojourner 1 Ozzie 1 Jazzy 1 Philippe 1 Tebow 1 Kara 1 Pumpkin 1 Ralphie 1 Jordy 1 Moreton 1 Leonard 1 Longfellow 1 Meyer 1 Milky 1 Brady 1 Binky 1 Batdog 1 Lucky 1 Buckley 1 Timmy 1 Cecil 1 Furzey 1 Mo 1 Tripp 1 Al 1 Davey 1 Dietrich 1 Kirk 1 Chloe 1 Smiley 1 Crouton 1 Sora 1 Gert 1 Genevieve 1 unacceptable 1 Farfle 1 Hazel 1 Devón 1 Biden 1 Shikha 1 Cilantro 1 Name: name, dtype: int64
archive_clean.name[archive_clean.name.str.islower().fillna(False)]
22 such 56 a 169 quite 193 quite 335 not 369 one 542 incredibly 649 a 801 a 819 very 852 my 924 one 988 not 992 his 993 one 1002 a 1004 a 1017 a 1025 an 1031 very 1040 actually 1049 a 1063 just 1071 getting 1095 mad 1097 very 1120 this 1121 unacceptable 1138 all 1193 a 1206 old 1207 a 1259 infuriating 1340 a 1351 a 1361 a 1362 an 1368 a 1382 a 1385 very 1435 getting 1457 just 1499 a 1527 the 1603 the 1693 actually 1724 by 1737 a 1747 officially 1785 a 1797 the 1815 the 1853 a 1854 a 1877 a 1878 a 1916 life 1923 a 1936 one 1941 a 1955 a 1994 a 2001 light 2019 just 2030 space 2034 a 2037 the 2066 a 2116 a 2125 a 2128 a 2146 a 2153 a 2161 a 2191 a 2198 a 2204 an 2211 a 2212 the 2218 a 2222 a 2235 a 2249 a 2255 a 2264 a 2273 a 2287 a 2304 a 2311 a 2314 a 2326 quite 2327 a 2333 an 2334 a 2335 an 2345 the 2346 the 2347 a 2348 a 2349 an 2350 a 2352 a 2353 a 2354 a Name: name, dtype: object
Lower names seems to be the ones incorrect, will replace with none values
archive_clean.name[archive_clean.name.str.islower().fillna(False)] = np.nan
archive_clean.name.value_counts(dropna=False)
NaN 726 Lucy 11 Charlie 11 Oliver 10 Cooper 10 Penny 9 Tucker 9 Lola 8 Winston 8 Sadie 8 Toby 7 Daisy 7 Bella 6 Jax 6 Oscar 6 Stanley 6 Koda 6 Bo 6 Bailey 6 Louis 5 Chester 5 Rusty 5 Dave 5 Buddy 5 Bentley 5 Leo 5 Scout 5 Milo 5 Sophie 4 Archie 4 Larry 4 Alfie 4 Jack 4 Dexter 4 Scooter 4 Gary 4 Phil 4 Bear 4 Finn 4 Chip 4 Maggie 4 Duke 4 Clark 4 Cassie 4 Clarence 4 Jerry 4 Sammy 4 Oakley 4 Gus 4 Derek 4 Winnie 4 Reggie 4 Jeffrey 4 Brody 4 George 4 Boomer 4 Rosie 3 Loki 3 Otis 3 Olive 3 Wallace 3 Zoey 3 Hank 3 Gizmo 3 Max 3 Beau 3 Riley 3 Bruce 3 Sunny 3 Ellie 3 Ted 3 Reginald 3 Nala 3 Malcolm 3 Klevin 3 Louie 3 Sebastian 3 Moose 3 Luna 3 Carl 3 Zeke 3 Samson 3 Waffles 3 Kyle 3 Steven 3 Wilson 3 Wyatt 3 Gerald 3 Jimothy 3 Ruby 3 Walter 3 Lily 3 Calvin 3 Mia 3 Shadow 3 Vincent 3 Doug 3 Maximus 3 Reese 3 Earl 3 Rocky 2 Bubbles 2 Colby 2 Jeph 2 Kreg 2 Atticus 2 Arnie 2 Chipson 2 Bob 2 Kreggory 2 Herm 2 Alice 2 Churlie 2 Atlas 2 Crystal 2 Luca 2 Cody 2 Pippa 2 Lincoln 2 Mister 2 Juno 2 Albert 2 Nelly 2 Sam 2 Solomon 2 Cash 2 Jimison 2 Keith 2 Aspen 2 Griffin 2 Piper 2 Theodore 2 Fred 2 Sansa 2 Bernie 2 Peaches 2 Franklin 2 Flávio 2 Kilo 2 CeCe 2 Rocco 2 Kenneth 2 Blitz 2 Kirby 2 Belle 2 Fiona 2 Gabe 2 Raymond 2 Ash 2 Jesse 2 Indie 2 Brad 2 Lennon 2 Penelope 2 Linda 2 Harold 2 Herald 2 Marley 2 Dash 2 Keurig 2 Roosevelt 2 Pickles 2 Patrick 2 Benedict 2 Watson 2 Jackson 2 Benji 2 Abby 2 Lenny 2 Olivia 2 Oshie 2 Neptune 2 Tyr 2 Hunter 2 Sarge 2 Ollie 2 Titan 2 Jiminy 2 Finley 2 Paisley 2 Terry 2 Thumas 2 Odie 2 Wally 2 Moe 2 Albus 2 Charles 2 Lou 2 Yogi 2 Doc 2 Opal 2 Misty 2 Chuckles 2 Coco 2 Smokey 2 Rufus 2 Trooper 2 Coops 2 Hammond 2 Dakota 2 Baxter 2 Oliviér 2 Frank 2 Bisquick 2 Romeo 2 Phineas 2 Layla 2 Calbert 2 Curtis 2 Maxaroni 2 Ozzy 2 Elliot 2 Eli 2 Percy 2 Django 2 Kevin 2 Rory 2 Lorenzo 2 Frankie 2 Sugar 2 Sampson 2 Axel 2 Ava 2 Cupcake 2 Chet 2 Panda 2 Remington 2 Phred 2 Maddie 2 Sandy 2 Hobbes 2 Eve 1 Trip 1 Pluto 1 Obi 1 Miguel 1 Clifford 1 Stella 1 General 1 Jed 1 Blakely 1 Ace 1 Hall 1 Strudel 1 Keet 1 Hubertson 1 Lizzie 1 Evy 1 Sierra 1 Kial 1 Bonaparte 1 Kaiya 1 Christoper 1 Ralphus 1 Birf 1 Maude 1 Adele 1 Quinn 1 Sid 1 Scruffers 1 Mac 1 Lucia 1 Hercules 1 Goliath 1 Seamus 1 Angel 1 Alexanderson 1 Sweet 1 Andy 1 Gilbert 1 Jarod 1 Combo 1 Tuck 1 Ben 1 Blipson 1 Bode 1 Geoff 1 Reptar 1 Tyrus 1 Ito 1 Sonny 1 Jarvis 1 Fillup 1 Dutch 1 Kathmandu 1 Mack 1 Cermet 1 Flurpson 1 Newt 1 Anakin 1 Kramer 1 Coleman 1 Kayla 1 Chubbs 1 Butter 1 Snoopy 1 Shadoe 1 Poppy 1 Dudley 1 Gustav 1 Bert 1 Marlee 1 Shakespeare 1 Tupawc 1 Peanut 1 Sage 1 Kanu 1 Kellogg 1 Emma 1 Cal 1 Remy 1 Charleson 1 Link 1 Brandy 1 Crawford 1 Kulet 1 Ferg 1 Jackie 1 Hamrick 1 Todo 1 Divine 1 Tom 1 JD 1 Clybe 1 Bruiser 1 Clarkus 1 Rorie 1 Alexander 1 Frönq 1 Naphaniel 1 Cupid 1 Harper 1 Chadrick 1 Ivar 1 Pancake 1 Bubba 1 Wafer 1 BeBe 1 Kendall 1 Kane 1 Nugget 1 Carper 1 Rooney 1 Danny 1 Rubio 1 Suki 1 Zeus 1 Akumi 1 Snickers 1 Beya 1 Grady 1 Lilly 1 Rizzo 1 Mairi 1 Gunner 1 Ember 1 Jameson 1 Ronnie 1 Darrel 1 Bobble 1 Fiji 1 Timber 1 Kuyu 1 Iggy 1 Eriq 1 Grizzwald 1 Dale 1 Charl 1 Thor 1 Emmie 1 Storkson 1 Beckham 1 Wishes 1 Snoop 1 Ike 1 Mason 1 Ridley 1 Teddy 1 Aubie 1 Crumpet 1 Arnold 1 Aja 1 Kody 1 Maya 1 Bronte 1 Mollie 1 Finnegus 1 Ambrose 1 Ginger 1 Rontu 1 Pilot 1 Mookie 1 Jebberson 1 Cannon 1 Levi 1 Izzy 1 Willie 1 Jim 1 Venti 1 Liam 1 Blue 1 Margo 1 Cali 1 Willem 1 Skittles 1 Arya 1 Dawn 1 Leonidas 1 Klein 1 Pubert 1 Blanket 1 Dex 1 Rupert 1 Kloey 1 Jay 1 Rodney 1 Glacier 1 Loomis 1 Sunshine 1 Tonks 1 Lilli 1 Mingus 1 Berb 1 Banjo 1 Stu 1 Oreo 1 Gidget 1 Lenox 1 Halo 1 Nigel 1 Lillie 1 Glenn 1 Lance 1 Kobe 1 Humphrey 1 Eevee 1 Timofy 1 Jaspers 1 Lulu 1 Godzilla 1 Rufio 1 Murphy 1 Fabio 1 Geno 1 Trevith 1 Lassie 1 Opie 1 Millie 1 Burt 1 Crimson 1 Baloo 1 Jomathan 1 Jessiga 1 Boots 1 Amy 1 Claude 1 Hero 1 Chef 1 Skye 1 Superpup 1 Tito 1 Ralph 1 Nollie 1 Swagger 1 Chase 1 Lorelei 1 Cheesy 1 Timison 1 Zooey 1 Juckson 1 Florence 1 Clyde 1 Tilly 1 Molly 1 Mabel 1 Steve 1 Ralf 1 Karl 1 Yukon 1 Michelangelope 1 Tug 1 Major 1 Tanner 1 Taco 1 Karll 1 Monty 1 Noosh 1 Spark 1 Lugan 1 Pawnd 1 Shelby 1 Zeek 1 Godi 1 Dallas 1 Bilbo 1 Meera 1 Rey 1 Julius 1 Dante 1 Astrid 1 Fynn 1 Ebby 1 Flash 1 Rose 1 Jennifur 1 Marq 1 Pupcasso 1 Tommy 1 Edd 1 Pete 1 Aiden 1 Alfy 1 Duddles 1 Edmund 1 Trigger 1 Jimbo 1 Eugene 1 Rodman 1 Rumble 1 Jett 1 Ralphé 1 DayZ 1 River 1 Vinnie 1 Saydee 1 Beemo 1 Schnozz 1 Nico 1 Striker 1 Tedders 1 Jo 1 Herb 1 Boston 1 Aqua 1 Kota 1 Sparky 1 Rumpole 1 Willy 1 Maxwell 1 Mark 1 Rilo 1 Vinscent 1 Corey 1 Blu 1 Jangle 1 Jazz 1 Jeffri 1 Amélie 1 Simba 1 William 1 Tess 1 Pipsy 1 Joey 1 Enchilada 1 Yoda 1 Chaz 1 Donny 1 Kaia 1 Severus 1 Aldrick 1 Dixie 1 Sailer 1 Rueben 1 Harvey 1 Benny 1 Bloop 1 Roscoe 1 Ralphy 1 Kingsley 1 Durg 1 Tove 1 Jeffrie 1 Grizzie 1 Mattie 1 Cedrick 1 Brat 1 Marvin 1 Comet 1 Barclay 1 Brandonald 1 Carll 1 Balto 1 Harry 1 Sephie 1 Chesterson 1 Arlen 1 Chevy 1 Diogi 1 Howie 1 Rizzy 1 Stubert 1 Darla 1 Butters 1 Franq 1 Tater 1 Staniel 1 Travis 1 Filup 1 Rascal 1 Karma 1 Einstein 1 Brutus 1 Hurley 1 Canela 1 Daniel 1 Ken 1 Taz 1 Fletcher 1 Herschel 1 Lupe 1 Goose 1 Laika 1 Damon 1 Huxley 1 Hermione 1 Bradley 1 Antony 1 Sailor 1 Pherb 1 Baron 1 Grey 1 Chuck 1 Creg 1 Henry 1 Anna 1 Covach 1 Fizz 1 Mimosa 1 Lilah 1 Brandi 1 Mary 1 Rolf 1 Erik 1 Jamesy 1 Vince 1 Ralpher 1 Lambeau 1 Shiloh 1 Malikai 1 Meatball 1 Griswold 1 Ricky 1 Rover 1 Augie 1 Alejandro 1 Billl 1 Bookstore 1 Miley 1 Zuzu 1 Rinna 1 Cuddles 1 Tassy 1 Dewey 1 Oddie 1 Ronduh 1 Horace 1 Raphael 1 Gin 1 Stefan 1 Brudge 1 Perry 1 Mike 1 Skittle 1 Pepper 1 Happy 1 Dug 1 Cleopatricia 1 Laela 1 Coopson 1 Cora 1 Tiger 1 Rhino 1 Harrison 1 Tedrick 1 Gerbald 1 Jareld 1 Mauve 1 Walker 1 Derby 1 Bodie 1 Ralphson 1 Noah 1 Ole 1 Bauer 1 Socks 1 Spencer 1 Snicku 1 Julio 1 Acro 1 Ruffles 1 Dwight 1 Beebop 1 Olaf 1 Apollo 1 Colin 1 Dotsy 1 Harlso 1 Ron 1 Bungalo 1 Dook 1 Grizz 1 Callie 1 Maks 1 Sky 1 Wesley 1 Hanz 1 Mutt 1 Gòrdón 1 Pip 1 Monkey 1 Iroh 1 Rudy 1 Sweets 1 Dobby 1 Joshwa 1 Harnold 1 Barry 1 Richie 1 Leela 1 Jaycob 1 Ed 1 Bruno 1 Gordon 1 Zoe 1 Chuq 1 Lolo 1 Sandra 1 Sprout 1 Koko 1 Duchess 1 Fido 1 Jersey 1 Bertson 1 Cheryl 1 Stephan 1 Doobert 1 Patch 1 Terrance 1 Chelsea 1 Pippin 1 Orion 1 Logan 1 Champ 1 Livvie 1 Katie 1 Chompsky 1 Freddery 1 Tessa 1 Bobbay 1 Kenny 1 Obie 1 Jiminus 1 Alf 1 Buddah 1 Strider 1 Ziva 1 Lacy 1 Dido 1 Hector 1 Kona 1 Barney 1 Emanuel 1 Stuart 1 Monster 1 Kallie 1 Odin 1 Binky 1 Moofasa 1 Gromit 1 Torque 1 Tuco 1 Brian 1 Schnitzel 1 O 1 Spanky 1 Napolean 1 Puff 1 Deacon 1 Cilantro 1 Brownie 1 Pavlov 1 Kyro 1 Wiggles 1 Lipton 1 Ester 1 Jessifer 1 Marty 1 Kevon 1 Jerome 1 DonDon 1 Arlo 1 Philbert 1 Sobe 1 Tango 1 Chesney 1 Sprinkles 1 Carly 1 Bloo 1 Bowie 1 Dot 1 Pinot 1 Zara 1 Mojo 1 Bobb 1 Samsom 1 Paull 1 Fwed 1 Shawwn 1 Banditt 1 Edgar 1 Maisey 1 Eazy 1 Shnuggles 1 Reagan 1 Eleanor 1 Linus 1 Georgie 1 Andru 1 Tobi 1 Jockson 1 Mya 1 Holly 1 Tayzie 1 Mona 1 Kollin 1 Toffee 1 Terrenth 1 Bell 1 Kawhi 1 Brockly 1 Dylan 1 Billy 1 Asher 1 Betty 1 Rambo 1 Vixen 1 Brady 1 Stewie 1 Mosby 1 Lucky 1 Bradlay 1 Kenzie 1 Ashleigh 1 Theo 1 Brooks 1 Bayley 1 Robin 1 Lili 1 Emmy 1 Winifred 1 Randall 1 Shooter 1 Nida 1 Ulysses 1 Traviss 1 Willow 1 Craig 1 Petrick 1 Nimbus 1 Bobby 1 Amber 1 Milky 1 Bluebert 1 Norman 1 Heinrich 1 Darby 1 Stark 1 Huck 1 Siba 1 Mitch 1 Berkeley 1 Jeremy 1 Stephanus 1 Carter 1 Carbon 1 Tino 1 Gustaf 1 Clarq 1 Biden 1 Bones 1 Jonah 1 Caryl 1 Shaggy 1 Pablo 1 Josep 1 Sundance 1 Jazzy 1 Pumpkin 1 Batdog 1 Sully 1 Remus 1 Anthony 1 Tycho 1 Sojourner 1 Luther 1 Ozzie 1 Philippe 1 Buckley 1 Jeb 1 Tyrone 1 Kara 1 Ralphie 1 Jordy 1 Moreton 1 Leonard 1 Longfellow 1 Meyer 1 Scott 1 Crouton 1 Shikha 1 Dunkin 1 Cecil 1 Furzey 1 Mo 1 Tripp 1 Al 1 Davey 1 Tebow 1 Dietrich 1 Kirk 1 Chloe 1 Timmy 1 Smiley 1 Stormy 1 Sora 1 Gert 1 Genevieve 1 Farfle 1 Hazel 1 Devón 1 Autumn 1 Name: name, dtype: int64
archive_clean.name[archive_clean.name.str.islower().fillna(False)]
Series([], Name: name, dtype: object)
Several_ids columns need to be dropped and also retweed columns details.
retweeted information also should be removed.
archive_clean.columns
Index(['tweet_id', 'in_reply_to_status_id', 'in_reply_to_user_id', 'timestamp',
'source', 'text', 'retweeted_status_id', 'retweeted_status_user_id',
'retweeted_status_timestamp', 'expanded_urls', 'rating_numerator',
'rating_denominator', 'name', 'doggo', 'floofer', 'pupper', 'puppo'],
dtype='object')
archive_clean.drop(['in_reply_to_status_id', 'in_reply_to_user_id', 'retweeted_status_id', 'retweeted_status_user_id', 'retweeted_status_timestamp'],\
axis=1, inplace=True)
archive_clean.columns
Index(['tweet_id', 'timestamp', 'source', 'text', 'expanded_urls',
'rating_numerator', 'rating_denominator', 'name', 'doggo', 'floofer',
'pupper', 'puppo'],
dtype='object')
archive_clean.shape
(2117, 12)
wrong numerator and denominator ratings.(get correct values from tweets)
archive_clean['rating_numerator'].min()
0
x = archive_clean['text'][516]
x
'Meet Sam. She smiles 24/7 & secretly aspires to be a reindeer. \nKeep Sam smiling by clicking and sharing this link:\nhttps://t.co/98tB8y7y7t https://t.co/LouL5vdvxx'
import re
temp = re.findall(r'\d+/\d+', x)
temp
['24/7']
# regex = re.compile(r'\d+/\d')
# #archive_clean['text_ratings'] = archive_clean['text'].apply(
# lambda x : regex.findall(x))
archive_clean['text_ratings'] = archive_clean['text'].str.extract(r'(\d+/\d+)')
archive_clean['text_ratings'].sample(20)
1907 10/10 1139 11/10 1051 11/10 1275 13/10 809 12/10 947 11/10 1472 10/10 1353 10/10 2085 10/10 572 10/10 816 10/10 1344 12/10 1452 13/10 1454 12/10 1107 11/10 1450 11/10 2257 11/10 339 14/10 1965 7/10 1842 11/10 Name: text_ratings, dtype: object
archive_clean['text_ratings'].str.split('/', expand=True)
| 0 | 1 | |
|---|---|---|
| 0 | 13 | 10 |
| 1 | 13 | 10 |
| 2 | 12 | 10 |
| 3 | 13 | 10 |
| 4 | 12 | 10 |
| 5 | 13 | 10 |
| 6 | 13 | 10 |
| 7 | 13 | 10 |
| 8 | 13 | 10 |
| 9 | 14 | 10 |
| 10 | 13 | 10 |
| 11 | 13 | 10 |
| 12 | 13 | 10 |
| 13 | 12 | 10 |
| 14 | 13 | 10 |
| 15 | 13 | 10 |
| 16 | 12 | 10 |
| 17 | 13 | 10 |
| 18 | 13 | 10 |
| 20 | 12 | 10 |
| 21 | 13 | 10 |
| 22 | 14 | 10 |
| 23 | 13 | 10 |
| 24 | 13 | 10 |
| 25 | 12 | 10 |
| 26 | 13 | 10 |
| 27 | 13 | 10 |
| 28 | 13 | 10 |
| 29 | 12 | 10 |
| 31 | 13 | 10 |
| 33 | 12 | 10 |
| 34 | 13 | 10 |
| 35 | 14 | 10 |
| 37 | 13 | 10 |
| 38 | 12 | 10 |
| 39 | 13 | 10 |
| 40 | 13 | 10 |
| 41 | 14 | 10 |
| 42 | 13 | 10 |
| 43 | 12 | 10 |
| 44 | 12 | 10 |
| 45 | 5 | 10 |
| 46 | 13 | 10 |
| 47 | 13 | 10 |
| 48 | 13 | 10 |
| 49 | 12 | 10 |
| 50 | 13 | 10 |
| 51 | 13 | 10 |
| 52 | 13 | 10 |
| 53 | 12 | 10 |
| 54 | 13 | 10 |
| 56 | 14 | 10 |
| 57 | 12 | 10 |
| 58 | 13 | 10 |
| 59 | 12 | 10 |
| 60 | 12 | 10 |
| 61 | 12 | 10 |
| 62 | 11 | 10 |
| 63 | 13 | 10 |
| 65 | 12 | 10 |
| 66 | 13 | 10 |
| 67 | 12 | 10 |
| 69 | 11 | 10 |
| 70 | 13 | 10 |
| 71 | 13 | 10 |
| 72 | 13 | 10 |
| 75 | 13 | 10 |
| 76 | 14 | 10 |
| 77 | 13 | 10 |
| 79 | 12 | 10 |
| 80 | 13 | 10 |
| 81 | 12 | 10 |
| 82 | 12 | 10 |
| 83 | 14 | 10 |
| 84 | 13 | 10 |
| 85 | 13 | 10 |
| 86 | 13 | 10 |
| 87 | 13 | 10 |
| 88 | 13 | 10 |
| 89 | 12 | 10 |
| 90 | 12 | 10 |
| 92 | 13 | 10 |
| 93 | 12 | 10 |
| 94 | 13 | 10 |
| 96 | 13 | 10 |
| 98 | 12 | 10 |
| 99 | 12 | 10 |
| 100 | 13 | 10 |
| 102 | 13 | 10 |
| 103 | 12 | 10 |
| 104 | 13 | 10 |
| 105 | 12 | 10 |
| 106 | 13 | 10 |
| 107 | 12 | 10 |
| 108 | 12 | 10 |
| 110 | 14 | 10 |
| 111 | 13 | 10 |
| 112 | 11 | 10 |
| 114 | 13 | 10 |
| 115 | 13 | 10 |
| 116 | 13 | 10 |
| 117 | 14 | 10 |
| 119 | 13 | 10 |
| 120 | 13 | 10 |
| 121 | 12 | 10 |
| 122 | 13 | 10 |
| 123 | 14 | 10 |
| 125 | 13 | 10 |
| 126 | 12 | 10 |
| 127 | 12 | 10 |
| 128 | 13 | 10 |
| 129 | 12 | 10 |
| 131 | 13 | 10 |
| 133 | 13 | 10 |
| 134 | 12 | 10 |
| 135 | 13 | 10 |
| 136 | 12 | 10 |
| 138 | 13 | 10 |
| 139 | 13 | 10 |
| 140 | 13 | 10 |
| 141 | 14 | 10 |
| 142 | 12 | 10 |
| 143 | 13 | 10 |
| 144 | 13 | 10 |
| 145 | 13 | 10 |
| 147 | 12 | 10 |
| 149 | 14 | 10 |
| 150 | 13 | 10 |
| 151 | 13 | 10 |
| 152 | 11 | 10 |
| 153 | 13 | 10 |
| 154 | 13 | 10 |
| 156 | 13 | 10 |
| 157 | 13 | 10 |
| 158 | 12 | 10 |
| 161 | 13 | 10 |
| 162 | 13 | 10 |
| 163 | 12 | 10 |
| 164 | 14 | 10 |
| 166 | 12 | 10 |
| 167 | 13 | 10 |
| 168 | 13 | 10 |
| 169 | 12 | 10 |
| 170 | 13 | 10 |
| 172 | 13 | 10 |
| 173 | 13 | 10 |
| 174 | 12 | 10 |
| 175 | 12 | 10 |
| 176 | 13 | 10 |
| 177 | 13 | 10 |
| 178 | 13 | 10 |
| 181 | 12 | 10 |
| 183 | 12 | 10 |
| 184 | 14 | 10 |
| 187 | 14 | 10 |
| 190 | 13 | 10 |
| 191 | 13 | 10 |
| 192 | 13 | 10 |
| 193 | 12 | 10 |
| 196 | 12 | 10 |
| 197 | 13 | 10 |
| 198 | 13 | 10 |
| 199 | 14 | 10 |
| 200 | 11 | 10 |
| 201 | 12 | 10 |
| 202 | 13 | 10 |
| 203 | 13 | 10 |
| 205 | 12 | 10 |
| 206 | 12 | 10 |
| 207 | 13 | 10 |
| 208 | 13 | 10 |
| 209 | 14 | 10 |
| 210 | 12 | 10 |
| 213 | 11 | 10 |
| 214 | 14 | 10 |
| 215 | 13 | 10 |
| 216 | 11 | 10 |
| 217 | 13 | 10 |
| 219 | 11 | 10 |
| 220 | 12 | 10 |
| 221 | 12 | 10 |
| 223 | 12 | 10 |
| 224 | 11 | 10 |
| 225 | 13 | 10 |
| 226 | 12 | 10 |
| 227 | 12 | 10 |
| 229 | 6 | 10 |
| 232 | 10 | 10 |
| 233 | 12 | 10 |
| 235 | 12 | 10 |
| 236 | 12 | 10 |
| 237 | 11 | 10 |
| 238 | 11 | 10 |
| 239 | 13 | 10 |
| 240 | 13 | 10 |
| 241 | 11 | 10 |
| 242 | 13 | 10 |
| 243 | 13 | 10 |
| 244 | 12 | 10 |
| 245 | 13 | 10 |
| 246 | 12 | 10 |
| 248 | 13 | 10 |
| 249 | 12 | 10 |
| 251 | 13 | 10 |
| 252 | 12 | 10 |
| 253 | 13 | 10 |
| 254 | 11 | 10 |
| 255 | 12 | 10 |
| 256 | 13 | 10 |
| 257 | 12 | 10 |
| 258 | 11 | 10 |
| 259 | 13 | 10 |
| 261 | 13 | 10 |
| 262 | 12 | 10 |
| 263 | 13 | 10 |
| 264 | 12 | 10 |
| 265 | 12 | 10 |
| 267 | 12 | 10 |
| 268 | 14 | 10 |
| 269 | 12 | 10 |
| 270 | 13 | 10 |
| 271 | 12 | 10 |
| 275 | 10 | 10 |
| 276 | 12 | 10 |
| 277 | 13 | 10 |
| 278 | 12 | 10 |
| 279 | 13 | 10 |
| 280 | 12 | 10 |
| 282 | 13 | 10 |
| 283 | 13 | 10 |
| 284 | 13 | 10 |
| 287 | 13 | 10 |
| 288 | 13 | 10 |
| 292 | 13 | 10 |
| 293 | 12 | 10 |
| 294 | 13 | 10 |
| 295 | 12 | 10 |
| 296 | 13 | 10 |
| 297 | 13 | 10 |
| 299 | 12 | 10 |
| 300 | 12 | 10 |
| 301 | 11 | 10 |
| 304 | 12 | 10 |
| 305 | 13 | 10 |
| 306 | 13 | 10 |
| 308 | 11 | 10 |
| 311 | 12 | 10 |
| 312 | 12 | 10 |
| 314 | 12 | 10 |
| 315 | 0 | 10 |
| 316 | 12 | 10 |
| 317 | 13 | 10 |
| 318 | 13 | 10 |
| 320 | 12 | 10 |
| 321 | 12 | 10 |
| 322 | 11 | 10 |
| 323 | 10 | 10 |
| 324 | 12 | 10 |
| 325 | 12 | 10 |
| 326 | 13 | 10 |
| 328 | 13 | 10 |
| 329 | 13 | 10 |
| 330 | 12 | 10 |
| 331 | 13 | 10 |
| 333 | 13 | 10 |
| 334 | 13 | 10 |
| 335 | 10 | 10 |
| 336 | 12 | 10 |
| 337 | 12 | 10 |
| 338 | 11 | 10 |
| 339 | 14 | 10 |
| 344 | 12 | 10 |
| 345 | 12 | 10 |
| 347 | 14 | 10 |
| 348 | 13 | 10 |
| 349 | 13 | 10 |
| 350 | 13 | 10 |
| 351 | 12 | 10 |
| 352 | 13 | 10 |
| 353 | 12 | 10 |
| 354 | 12 | 10 |
| 355 | 12 | 10 |
| 356 | 13 | 10 |
| 358 | 13 | 10 |
| 360 | 12 | 10 |
| 361 | 12 | 10 |
| 362 | 11 | 10 |
| 363 | 13 | 10 |
| 364 | 12 | 10 |
| 365 | 13 | 10 |
| 367 | 13 | 10 |
| 368 | 10 | 10 |
| 369 | 14 | 10 |
| 370 | 12 | 10 |
| 371 | 12 | 10 |
| 372 | 14 | 10 |
| 373 | 13 | 10 |
| 374 | 12 | 10 |
| 376 | 13 | 10 |
| 377 | 11 | 10 |
| 378 | 12 | 10 |
| 379 | 12 | 10 |
| 380 | 13 | 10 |
| 381 | 12 | 10 |
| 383 | 13 | 10 |
| 384 | 12 | 10 |
| 385 | 13 | 10 |
| 388 | 13 | 10 |
| 389 | 12 | 10 |
| 390 | 11 | 10 |
| 391 | 13 | 10 |
| 392 | 13 | 10 |
| 393 | 11 | 10 |
| 394 | 12 | 10 |
| 395 | 14 | 10 |
| 396 | 13 | 10 |
| 398 | 12 | 10 |
| 400 | 12 | 10 |
| 401 | 13 | 10 |
| 402 | 13 | 10 |
| 403 | 11 | 10 |
| 404 | 14 | 10 |
| 405 | 12 | 10 |
| 407 | 12 | 10 |
| 408 | 11 | 10 |
| 410 | 11 | 10 |
| 412 | 12 | 10 |
| 413 | 13 | 10 |
| 414 | 12 | 10 |
| 416 | 12 | 10 |
| 417 | 13 | 10 |
| 418 | 14 | 10 |
| 419 | 11 | 10 |
| 421 | 13 | 10 |
| 423 | 13 | 10 |
| 424 | 13 | 10 |
| 426 | 14 | 10 |
| 428 | 12 | 10 |
| 429 | 11 | 10 |
| 430 | 12 | 10 |
| 432 | 13 | 10 |
| 433 | 84 | 70 |
| 436 | 14 | 10 |
| 437 | 12 | 10 |
| 439 | 13 | 10 |
| 440 | 11 | 10 |
| 441 | 11 | 10 |
| 442 | 13 | 10 |
| 443 | 12 | 10 |
| 444 | 10 | 10 |
| 445 | 12 | 10 |
| 448 | 14 | 10 |
| 449 | 14 | 10 |
| 451 | 13 | 10 |
| 452 | 12 | 10 |
| 454 | 11 | 10 |
| 456 | 12 | 10 |
| 457 | 11 | 10 |
| 458 | 12 | 10 |
| 459 | 13 | 10 |
| 460 | 13 | 10 |
| 461 | 12 | 10 |
| 463 | 13 | 10 |
| 464 | 11 | 10 |
| 466 | 13 | 10 |
| 467 | 13 | 10 |
| 468 | 11 | 10 |
| 470 | 12 | 10 |
| 471 | 12 | 10 |
| 472 | 13 | 10 |
| 473 | 11 | 10 |
| 474 | 12 | 10 |
| 477 | 11 | 10 |
| 478 | 13 | 10 |
| 480 | 11 | 10 |
| 481 | 12 | 10 |
| 482 | 13 | 10 |
| 483 | 11 | 10 |
| 484 | 12 | 10 |
| 486 | 12 | 10 |
| 487 | 12 | 10 |
| 489 | 11 | 10 |
| 490 | 14 | 10 |
| 491 | 12 | 10 |
| 492 | 13 | 10 |
| 493 | 11 | 10 |
| 494 | 13 | 10 |
| 495 | 12 | 10 |
| 496 | 12 | 10 |
| 497 | 13 | 10 |
| 499 | 11 | 10 |
| 500 | 12 | 10 |
| 501 | 11 | 10 |
| 502 | 11 | 10 |
| 503 | 12 | 10 |
| 504 | 13 | 10 |
| 505 | 10 | 10 |
| 507 | 12 | 10 |
| 508 | 13 | 10 |
| 509 | 12 | 10 |
| 510 | 13 | 10 |
| 511 | 11 | 10 |
| 512 | 13 | 10 |
| 514 | 10 | 10 |
| 515 | 11 | 10 |
| 516 | 24 | 7 |
| 517 | 11 | 10 |
| 518 | 11 | 10 |
| 519 | 13 | 10 |
| 520 | 12 | 10 |
| 521 | 10 | 10 |
| 523 | 12 | 10 |
| 524 | 12 | 10 |
| 525 | 11 | 10 |
| 526 | 13 | 10 |
| 527 | 12 | 10 |
| 528 | 12 | 10 |
| 529 | 11 | 10 |
| 531 | 12 | 10 |
| 532 | 12 | 10 |
| 533 | 14 | 10 |
| 534 | 13 | 10 |
| 536 | 12 | 10 |
| 537 | 13 | 10 |
| 539 | 13 | 10 |
| 540 | 11 | 10 |
| 542 | 11 | 10 |
| 544 | 12 | 10 |
| 545 | 12 | 10 |
| 547 | 13 | 10 |
| 548 | 12 | 10 |
| 549 | 12 | 10 |
| 550 | 12 | 10 |
| 551 | 13 | 10 |
| 553 | 13 | 10 |
| 554 | 12 | 10 |
| 556 | 13 | 10 |
| 557 | 12 | 10 |
| 559 | 11 | 10 |
| 560 | 12 | 10 |
| 562 | 11 | 10 |
| 563 | 12 | 10 |
| 564 | 13 | 10 |
| 565 | 11 | 10 |
| 567 | 12 | 10 |
| 569 | 12 | 10 |
| 571 | 12 | 10 |
| 572 | 10 | 10 |
| 573 | 13 | 10 |
| 575 | 12 | 10 |
| 578 | 12 | 10 |
| 579 | 11 | 10 |
| 580 | 12 | 10 |
| 582 | 12 | 10 |
| 584 | 13 | 10 |
| 585 | 11 | 10 |
| 587 | 13 | 10 |
| 588 | 12 | 10 |
| 590 | 11 | 10 |
| 591 | 11 | 10 |
| 592 | 12 | 10 |
| 593 | 11 | 10 |
| 607 | 13 | 10 |
| 608 | 12 | 10 |
| 609 | 12 | 10 |
| 610 | 12 | 10 |
| 613 | 12 | 10 |
| 614 | 11 | 10 |
| 616 | 12 | 10 |
| 617 | 12 | 10 |
| 619 | 11 | 10 |
| 620 | 13 | 10 |
| 621 | 11 | 10 |
| 622 | 12 | 10 |
| 623 | 13 | 10 |
| 624 | 13 | 10 |
| 625 | 12 | 10 |
| 626 | 11 | 10 |
| 628 | 12 | 10 |
| 630 | 12 | 10 |
| 631 | 14 | 10 |
| 632 | 12 | 10 |
| 633 | 13 | 10 |
| 635 | 12 | 10 |
| 636 | 12 | 10 |
| 637 | 13 | 10 |
| 638 | 12 | 10 |
| 639 | 12 | 10 |
| 640 | 13 | 10 |
| 641 | 11 | 10 |
| 642 | 10 | 10 |
| 643 | 12 | 10 |
| 644 | 11 | 10 |
| 645 | 12 | 10 |
| 646 | 11 | 10 |
| 647 | 13 | 10 |
| 648 | 11 | 10 |
| 649 | 13 | 10 |
| 650 | 12 | 10 |
| 651 | 12 | 10 |
| 652 | 12 | 10 |
| 653 | 11 | 10 |
| 657 | 14 | 10 |
| 658 | 13 | 10 |
| 659 | 12 | 10 |
| 660 | 12 | 10 |
| 662 | 12 | 10 |
| 663 | 12 | 10 |
| 665 | 12 | 10 |
| 666 | 11 | 10 |
| 667 | 12 | 10 |
| 668 | 11 | 10 |
| 670 | 12 | 10 |
| 672 | 13 | 10 |
| 673 | 13 | 10 |
| 674 | 12 | 10 |
| 675 | 12 | 10 |
| 676 | 13 | 10 |
| 678 | 10 | 10 |
| 679 | 12 | 10 |
| 680 | 11 | 10 |
| 681 | 12 | 10 |
| 683 | 11 | 10 |
| 684 | 13 | 10 |
| 685 | 13 | 10 |
| 687 | 12 | 10 |
| 688 | 11 | 10 |
| 689 | 13 | 10 |
| 690 | 11 | 10 |
| 691 | 10 | 10 |
| 693 | 12 | 10 |
| 695 | 75 | 10 |
| 696 | 12 | 10 |
| 697 | 11 | 10 |
| 698 | 13 | 10 |
| 699 | 12 | 10 |
| 700 | 11 | 10 |
| 703 | 12 | 10 |
| 704 | 12 | 10 |
| 705 | 10 | 10 |
| 706 | 11 | 10 |
| 708 | 12 | 10 |
| 709 | 11 | 10 |
| 710 | 13 | 10 |
| 711 | 11 | 10 |
| 712 | 12 | 10 |
| 713 | 12 | 10 |
| 714 | 12 | 10 |
| 715 | 13 | 10 |
| 716 | 12 | 10 |
| 717 | 12 | 10 |
| 718 | 11 | 10 |
| 719 | 13 | 10 |
| 721 | 12 | 10 |
| 722 | 11 | 10 |
| 723 | 12 | 10 |
| 724 | 11 | 10 |
| 725 | 10 | 10 |
| 726 | 11 | 10 |
| 727 | 12 | 10 |
| 729 | 11 | 10 |
| 730 | 5 | 10 |
| 731 | 11 | 10 |
| 732 | 12 | 10 |
| 733 | 12 | 10 |
| 734 | 11 | 10 |
| 735 | 10 | 10 |
| 736 | 13 | 10 |
| 737 | 10 | 10 |
| 738 | 11 | 10 |
| 739 | 12 | 10 |
| 740 | 12 | 10 |
| 743 | 11 | 10 |
| 744 | 11 | 10 |
| 746 | 10 | 10 |
| 747 | 11 | 10 |
| 748 | 12 | 10 |
| 750 | 12 | 10 |
| 751 | 13 | 10 |
| 752 | 11 | 10 |
| 754 | 13 | 10 |
| 755 | 11 | 10 |
| 756 | 10 | 10 |
| 757 | 11 | 10 |
| 758 | 14 | 10 |
| 760 | 13 | 10 |
| 761 | 11 | 10 |
| 762 | 12 | 10 |
| 763 | 27 | 10 |
| 765 | 3 | 10 |
| 766 | 12 | 10 |
| 768 | 12 | 10 |
| 769 | 12 | 10 |
| 771 | 12 | 10 |
| 772 | 11 | 10 |
| 774 | 13 | 10 |
| 775 | 10 | 10 |
| 776 | 11 | 10 |
| 777 | 10 | 10 |
| 779 | 12 | 10 |
| 780 | 11 | 10 |
| 781 | 13 | 10 |
| 782 | 11 | 10 |
| 783 | 12 | 10 |
| 785 | 13 | 10 |
| 786 | 12 | 10 |
| 787 | 10 | 10 |
| 788 | 14 | 10 |
| 789 | 11 | 10 |
| 790 | 12 | 10 |
| 791 | 12 | 10 |
| 792 | 10 | 10 |
| 793 | 11 | 10 |
| 795 | 12 | 10 |
| 796 | 10 | 10 |
| 797 | 12 | 10 |
| 798 | 11 | 10 |
| 799 | 11 | 10 |
| 801 | 10 | 10 |
| 802 | 12 | 10 |
| 803 | 10 | 10 |
| 804 | 12 | 10 |
| 805 | 10 | 10 |
| 806 | 11 | 10 |
| 807 | 13 | 10 |
| 808 | 11 | 10 |
| 809 | 12 | 10 |
| 810 | 11 | 10 |
| 812 | 11 | 10 |
| 813 | 12 | 10 |
| 814 | 7 | 10 |
| 816 | 10 | 10 |
| 817 | 11 | 10 |
| 819 | 11 | 10 |
| 820 | 11 | 10 |
| 821 | 10 | 10 |
| 823 | 10 | 10 |
| 824 | 12 | 10 |
| 825 | 13 | 10 |
| 827 | 12 | 10 |
| 828 | 12 | 10 |
| 830 | 11 | 10 |
| 831 | 10 | 10 |
| 832 | 12 | 10 |
| 834 | 11 | 10 |
| 835 | 8 | 10 |
| 836 | 10 | 10 |
| 837 | 11 | 10 |
| 838 | 12 | 10 |
| 839 | 13 | 10 |
| 840 | 13 | 10 |
| 842 | 10 | 10 |
| 844 | 11 | 10 |
| 845 | 9 | 10 |
| 846 | 12 | 10 |
| 848 | 12 | 10 |
| 849 | 11 | 10 |
| 850 | 12 | 10 |
| 851 | 12 | 10 |
| 852 | 13 | 10 |
| 853 | 11 | 10 |
| 854 | 10 | 10 |
| 855 | 12 | 10 |
| 856 | 10 | 10 |
| 858 | 11 | 10 |
| 859 | 8 | 10 |
| 861 | 10 | 10 |
| 862 | 11 | 10 |
| 863 | 12 | 10 |
| 864 | 12 | 10 |
| 865 | 11 | 10 |
| 866 | 14 | 10 |
| 867 | 12 | 10 |
| 869 | 11 | 10 |
| 870 | 10 | 10 |
| 871 | 11 | 10 |
| 873 | 10 | 10 |
| 874 | 11 | 10 |
| 875 | 10 | 10 |
| 876 | 11 | 10 |
| 877 | 11 | 10 |
| 878 | 11 | 10 |
| 879 | 12 | 10 |
| 880 | 12 | 10 |
| 881 | 12 | 10 |
| 882 | 13 | 10 |
| 883 | 4 | 10 |
| 884 | 10 | 10 |
| 886 | 12 | 10 |
| 887 | 10 | 10 |
| 888 | 11 | 10 |
| 889 | 12 | 10 |
| 891 | 10 | 10 |
| 892 | 11 | 10 |
| 893 | 10 | 10 |
| 894 | 12 | 10 |
| 896 | 7 | 10 |
| 897 | 11 | 10 |
| 898 | 11 | 10 |
| 899 | 13 | 10 |
| 900 | 12 | 10 |
| 901 | 11 | 10 |
| 902 | 165 | 150 |
| 903 | 10 | 10 |
| 904 | 11 | 10 |
| 905 | 13 | 10 |
| 906 | 9 | 10 |
| 907 | 10 | 10 |
| 909 | 11 | 10 |
| 910 | 12 | 10 |
| 912 | 4 | 10 |
| 913 | 13 | 10 |
| 914 | 10 | 10 |
| 915 | 8 | 10 |
| 916 | 11 | 10 |
| 917 | 12 | 10 |
| 918 | 11 | 10 |
| 919 | 13 | 10 |
| 920 | 11 | 10 |
| 921 | 12 | 10 |
| 922 | 10 | 10 |
| 923 | 12 | 10 |
| 924 | 14 | 10 |
| 925 | 13 | 10 |
| 927 | 11 | 10 |
| 928 | 12 | 10 |
| 929 | 10 | 10 |
| 930 | 11 | 10 |
| 931 | 10 | 10 |
| 932 | 12 | 10 |
| 933 | 10 | 10 |
| 934 | 11 | 10 |
| 935 | 12 | 10 |
| 936 | 8 | 10 |
| 938 | 11 | 10 |
| 939 | 13 | 10 |
| 940 | 10 | 10 |
| 941 | 12 | 10 |
| 942 | 11 | 10 |
| 944 | 10 | 10 |
| 945 | 10 | 10 |
| 946 | 9 | 10 |
| 947 | 11 | 10 |
| 948 | 8 | 10 |
| 950 | 12 | 10 |
| 951 | 13 | 10 |
| 952 | 11 | 10 |
| 953 | 12 | 10 |
| 954 | 11 | 10 |
| 955 | 13 | 10 |
| 956 | 5 | 10 |
| 957 | 10 | 10 |
| 958 | 12 | 10 |
| 959 | 10 | 10 |
| 960 | 12 | 10 |
| 961 | 10 | 10 |
| 962 | 11 | 10 |
| 963 | 12 | 10 |
| 964 | 8 | 10 |
| 965 | 12 | 10 |
| 966 | 9 | 10 |
| 968 | 13 | 10 |
| 969 | 11 | 10 |
| 970 | 10 | 10 |
| 971 | 11 | 10 |
| 972 | 12 | 10 |
| 973 | 10 | 10 |
| 974 | 11 | 10 |
| 975 | 13 | 10 |
| 976 | 10 | 10 |
| 977 | 11 | 10 |
| 978 | 12 | 10 |
| 979 | 1776 | 10 |
| 980 | 12 | 10 |
| 981 | 11 | 10 |
| 982 | 10 | 10 |
| 983 | 10 | 10 |
| 984 | 12 | 10 |
| 985 | 11 | 10 |
| 986 | 11 | 10 |
| 987 | 8 | 10 |
| 988 | 10 | 10 |
| 989 | 13 | 10 |
| 990 | 13 | 10 |
| 991 | 11 | 10 |
| 992 | 10 | 10 |
| 993 | 6 | 10 |
| 994 | 12 | 10 |
| 995 | 10 | 10 |
| 996 | 13 | 10 |
| 997 | 11 | 10 |
| 998 | 7 | 10 |
| 999 | 13 | 10 |
| 1000 | 10 | 10 |
| 1001 | 11 | 10 |
| 1002 | 8 | 10 |
| 1003 | 11 | 10 |
| 1004 | 4 | 10 |
| 1006 | 12 | 10 |
| 1007 | 10 | 10 |
| 1008 | 11 | 10 |
| 1009 | 10 | 10 |
| 1010 | 10 | 10 |
| 1011 | 12 | 10 |
| 1013 | 11 | 10 |
| 1014 | 10 | 10 |
| 1015 | 11 | 10 |
| 1016 | 0 | 10 |
| 1017 | 11 | 10 |
| 1018 | 13 | 10 |
| 1019 | 10 | 10 |
| 1020 | 11 | 10 |
| 1021 | 12 | 10 |
| 1022 | 11 | 10 |
| 1024 | 10 | 10 |
| 1025 | 9 | 10 |
| 1026 | 10 | 10 |
| 1027 | 11 | 10 |
| 1028 | 10 | 10 |
| 1029 | 7 | 10 |
| 1030 | 10 | 10 |
| 1031 | 9 | 10 |
| 1032 | 12 | 10 |
| 1033 | 11 | 10 |
| 1034 | 12 | 10 |
| 1035 | 9 | 10 |
| 1036 | 12 | 10 |
| 1037 | 10 | 10 |
| 1038 | 11 | 10 |
| 1039 | 13 | 10 |
| 1040 | 12 | 10 |
| 1041 | 11 | 10 |
| 1042 | 10 | 10 |
| 1044 | 10 | 10 |
| 1045 | 7 | 10 |
| 1046 | 11 | 10 |
| 1047 | 13 | 10 |
| 1048 | 10 | 10 |
| 1049 | 12 | 10 |
| 1050 | 10 | 10 |
| 1051 | 11 | 10 |
| 1052 | 10 | 10 |
| 1053 | 14 | 10 |
| 1054 | 12 | 10 |
| 1055 | 11 | 10 |
| 1056 | 12 | 10 |
| 1057 | 8 | 10 |
| 1058 | 10 | 10 |
| 1059 | 11 | 10 |
| 1060 | 9 | 10 |
| 1061 | 12 | 10 |
| 1062 | 11 | 10 |
| 1063 | 12 | 10 |
| 1064 | 10 | 10 |
| 1065 | 9 | 10 |
| 1066 | 8 | 10 |
| 1067 | 11 | 10 |
| 1068 | 9 | 11 |
| 1069 | 10 | 10 |
| 1070 | 9 | 10 |
| 1071 | 10 | 10 |
| 1072 | 12 | 10 |
| 1073 | 10 | 10 |
| 1074 | 12 | 10 |
| 1075 | 12 | 10 |
| 1076 | 9 | 10 |
| 1077 | 10 | 10 |
| 1078 | 6 | 10 |
| 1079 | 13 | 10 |
| 1081 | 11 | 10 |
| 1082 | 10 | 10 |
| 1083 | 11 | 10 |
| 1084 | 10 | 10 |
| 1085 | 9 | 10 |
| 1086 | 12 | 10 |
| 1087 | 10 | 10 |
| 1088 | 10 | 10 |
| 1089 | 10 | 10 |
| 1090 | 11 | 10 |
| 1091 | 13 | 10 |
| 1092 | 9 | 10 |
| 1093 | 13 | 10 |
| 1094 | 13 | 10 |
| 1095 | 13 | 10 |
| 1096 | 11 | 10 |
| 1097 | 10 | 10 |
| 1098 | 10 | 10 |
| 1099 | 11 | 10 |
| 1100 | 12 | 10 |
| 1101 | 11 | 10 |
| 1102 | 11 | 10 |
| 1103 | 8 | 10 |
| 1104 | 9 | 10 |
| 1105 | 10 | 10 |
| 1106 | 13 | 10 |
| 1107 | 11 | 10 |
| 1108 | 10 | 10 |
| 1109 | 10 | 10 |
| 1110 | 10 | 10 |
| 1111 | 10 | 10 |
| 1112 | 11 | 10 |
| 1113 | 12 | 10 |
| 1114 | 12 | 10 |
| 1115 | 11 | 10 |
| 1116 | 10 | 10 |
| 1117 | 11 | 10 |
| 1118 | 11 | 10 |
| 1119 | 12 | 10 |
| 1120 | 204 | 170 |
| 1121 | 9 | 10 |
| 1122 | 10 | 10 |
| 1123 | 11 | 10 |
| 1124 | 11 | 10 |
| 1125 | 6 | 10 |
| 1126 | 11 | 10 |
| 1127 | 12 | 10 |
| 1128 | 13 | 10 |
| 1129 | 13 | 10 |
| 1130 | 10 | 10 |
| 1131 | 11 | 10 |
| 1132 | 13 | 10 |
| 1133 | 10 | 10 |
| 1134 | 8 | 10 |
| 1135 | 10 | 10 |
| 1136 | 12 | 10 |
| 1137 | 11 | 10 |
| 1138 | 12 | 10 |
| 1139 | 11 | 10 |
| 1140 | 12 | 10 |
| 1141 | 13 | 10 |
| 1142 | 10 | 10 |
| 1143 | 11 | 10 |
| 1144 | 9 | 10 |
| 1145 | 10 | 10 |
| 1146 | 11 | 10 |
| 1147 | 12 | 10 |
| 1148 | 10 | 10 |
| 1149 | 12 | 10 |
| 1150 | 9 | 10 |
| 1151 | 12 | 10 |
| 1152 | 11 | 10 |
| 1153 | 12 | 10 |
| 1154 | 13 | 10 |
| 1155 | 12 | 10 |
| 1156 | 11 | 10 |
| 1157 | 10 | 10 |
| 1158 | 10 | 10 |
| 1159 | 10 | 10 |
| 1160 | 11 | 10 |
| 1161 | 12 | 10 |
| 1162 | 12 | 10 |
| 1163 | 10 | 10 |
| 1164 | 8 | 10 |
| 1165 | 4 | 20 |
| 1166 | 12 | 10 |
| 1167 | 11 | 10 |
| 1168 | 11 | 10 |
| 1169 | 12 | 10 |
| 1170 | 10 | 10 |
| 1171 | 10 | 10 |
| 1172 | 11 | 10 |
| 1173 | 10 | 10 |
| 1174 | 9 | 10 |
| 1175 | 11 | 10 |
| 1176 | 10 | 10 |
| 1177 | 12 | 10 |
| 1178 | 10 | 10 |
| 1179 | 11 | 10 |
| 1180 | 10 | 10 |
| 1181 | 11 | 10 |
| 1182 | 10 | 10 |
| 1183 | 12 | 10 |
| 1184 | 10 | 10 |
| 1185 | 11 | 10 |
| 1186 | 10 | 10 |
| 1187 | 9 | 10 |
| 1188 | 13 | 10 |
| 1189 | 3 | 10 |
| 1190 | 11 | 10 |
| 1191 | 11 | 10 |
| 1192 | 10 | 10 |
| 1193 | 11 | 10 |
| 1194 | 11 | 10 |
| 1195 | 9 | 10 |
| 1196 | 12 | 10 |
| 1197 | 10 | 10 |
| 1198 | 10 | 10 |
| 1199 | 11 | 10 |
| 1200 | 12 | 10 |
| 1201 | 13 | 10 |
| 1202 | 50 | 50 |
| 1203 | 12 | 10 |
| 1204 | 11 | 10 |
| 1205 | 11 | 10 |
| 1206 | 13 | 10 |
| 1207 | 10 | 10 |
| 1208 | 11 | 10 |
| 1209 | 10 | 10 |
| 1210 | 12 | 10 |
| 1211 | 11 | 10 |
| 1212 | 10 | 10 |
| 1213 | 10 | 10 |
| 1214 | 12 | 10 |
| 1215 | 12 | 10 |
| 1216 | 9 | 10 |
| 1217 | 12 | 10 |
| 1218 | 10 | 10 |
| 1219 | 4 | 10 |
| 1220 | 12 | 10 |
| 1221 | 10 | 10 |
| 1222 | 10 | 10 |
| 1223 | 8 | 10 |
| 1224 | 13 | 10 |
| 1225 | 10 | 10 |
| 1226 | 12 | 10 |
| 1227 | 12 | 10 |
| 1228 | 99 | 90 |
| 1229 | 12 | 10 |
| 1230 | 11 | 10 |
| 1231 | 10 | 10 |
| 1232 | 10 | 10 |
| 1233 | 10 | 10 |
| 1234 | 10 | 10 |
| 1235 | 10 | 10 |
| 1236 | 11 | 10 |
| 1237 | 12 | 10 |
| 1238 | 10 | 10 |
| 1239 | 7 | 10 |
| 1240 | 11 | 10 |
| 1241 | 6 | 10 |
| 1243 | 10 | 10 |
| 1244 | 11 | 10 |
| 1245 | 10 | 10 |
| 1246 | 13 | 10 |
| 1247 | 9 | 10 |
| 1248 | 11 | 10 |
| 1249 | 3 | 10 |
| 1250 | 11 | 10 |
| 1251 | 12 | 10 |
| 1252 | 10 | 10 |
| 1253 | 12 | 10 |
| 1254 | 80 | 80 |
| 1255 | 12 | 10 |
| 1256 | 12 | 10 |
| 1257 | 12 | 10 |
| 1258 | 11 | 10 |
| 1259 | 11 | 10 |
| 1260 | 13 | 10 |
| 1261 | 11 | 10 |
| 1262 | 8 | 10 |
| 1263 | 11 | 10 |
| 1264 | 12 | 10 |
| 1265 | 12 | 10 |
| 1266 | 12 | 10 |
| 1267 | 12 | 10 |
| 1268 | 12 | 10 |
| 1269 | 9 | 10 |
| 1270 | 10 | 10 |
| 1271 | 8 | 10 |
| 1272 | 11 | 10 |
| 1273 | 11 | 10 |
| 1274 | 45 | 50 |
| 1275 | 13 | 10 |
| 1276 | 10 | 10 |
| 1277 | 9 | 10 |
| 1278 | 8 | 10 |
| 1279 | 9 | 10 |
| 1280 | 10 | 10 |
| 1281 | 10 | 10 |
| 1282 | 11 | 10 |
| 1283 | 11 | 10 |
| 1284 | 13 | 10 |
| 1285 | 11 | 10 |
| 1286 | 12 | 10 |
| 1287 | 10 | 10 |
| 1288 | 11 | 10 |
| 1289 | 10 | 10 |
| 1290 | 11 | 10 |
| 1291 | 9 | 10 |
| 1292 | 10 | 10 |
| 1293 | 13 | 10 |
| 1294 | 12 | 10 |
| 1296 | 11 | 10 |
| 1297 | 11 | 10 |
| 1298 | 10 | 10 |
| 1299 | 12 | 10 |
| 1300 | 7 | 10 |
| 1301 | 10 | 10 |
| 1302 | 12 | 10 |
| 1303 | 4 | 10 |
| 1304 | 11 | 10 |
| 1305 | 10 | 10 |
| 1306 | 9 | 10 |
| 1307 | 10 | 10 |
| 1308 | 10 | 10 |
| 1309 | 11 | 10 |
| 1310 | 10 | 10 |
| 1311 | 12 | 10 |
| 1312 | 11 | 10 |
| 1313 | 13 | 10 |
| 1314 | 3 | 10 |
| 1315 | 12 | 10 |
| 1316 | 9 | 10 |
| 1317 | 10 | 10 |
| 1318 | 11 | 10 |
| 1319 | 12 | 10 |
| 1320 | 12 | 10 |
| 1321 | 12 | 10 |
| 1322 | 11 | 10 |
| 1323 | 11 | 10 |
| 1324 | 12 | 10 |
| 1325 | 7 | 10 |
| 1326 | 13 | 10 |
| 1327 | 10 | 10 |
| 1328 | 12 | 10 |
| 1329 | 10 | 10 |
| 1330 | 11 | 10 |
| 1331 | 11 | 10 |
| 1332 | 12 | 10 |
| 1333 | 12 | 10 |
| 1334 | 11 | 10 |
| 1335 | 11 | 10 |
| 1336 | 9 | 10 |
| 1337 | 10 | 10 |
| 1338 | 12 | 10 |
| 1339 | 12 | 10 |
| 1340 | 10 | 10 |
| 1341 | 12 | 10 |
| 1342 | 7 | 10 |
| 1343 | 13 | 10 |
| 1344 | 12 | 10 |
| 1346 | 11 | 10 |
| 1347 | 12 | 10 |
| 1348 | 10 | 10 |
| 1349 | 12 | 10 |
| 1350 | 8 | 10 |
| 1351 | 60 | 50 |
| 1352 | 10 | 10 |
| 1353 | 10 | 10 |
| 1354 | 11 | 10 |
| 1355 | 10 | 10 |
| 1356 | 9 | 10 |
| 1357 | 10 | 10 |
| 1358 | 12 | 10 |
| 1359 | 9 | 10 |
| 1360 | 12 | 10 |
| 1361 | 11 | 10 |
| 1362 | 10 | 10 |
| 1363 | 6 | 10 |
| 1364 | 12 | 10 |
| 1365 | 11 | 10 |
| 1366 | 10 | 10 |
| 1367 | 11 | 10 |
| 1368 | 12 | 10 |
| 1369 | 13 | 10 |
| 1370 | 12 | 10 |
| 1371 | 11 | 10 |
| 1372 | 9 | 10 |
| 1373 | 12 | 10 |
| 1374 | 11 | 10 |
| 1375 | 11 | 10 |
| 1376 | 11 | 10 |
| 1377 | 10 | 10 |
| 1378 | 9 | 10 |
| 1379 | 10 | 10 |
| 1380 | 12 | 10 |
| 1381 | 11 | 10 |
| 1382 | 12 | 10 |
| 1383 | 10 | 10 |
| 1384 | 7 | 10 |
| 1385 | 11 | 10 |
| 1386 | 10 | 10 |
| 1387 | 12 | 10 |
| 1388 | 6 | 10 |
| 1389 | 10 | 10 |
| 1390 | 11 | 10 |
| 1391 | 10 | 10 |
| 1392 | 6 | 10 |
| 1393 | 10 | 10 |
| 1394 | 9 | 10 |
| 1395 | 11 | 10 |
| 1396 | 12 | 10 |
| 1397 | 10 | 10 |
| 1398 | 11 | 10 |
| 1399 | 5 | 10 |
| 1400 | 12 | 10 |
| 1401 | 12 | 10 |
| 1402 | 10 | 10 |
| 1403 | 11 | 10 |
| 1404 | 11 | 10 |
| 1405 | 10 | 10 |
| 1406 | 3 | 10 |
| 1407 | 8 | 10 |
| 1408 | 12 | 10 |
| 1409 | 12 | 10 |
| 1410 | 13 | 10 |
| 1411 | 13 | 10 |
| 1412 | 11 | 10 |
| 1413 | 10 | 10 |
| 1414 | 10 | 10 |
| 1415 | 7 | 10 |
| 1416 | 12 | 10 |
| 1417 | 9 | 10 |
| 1418 | 10 | 10 |
| 1419 | 11 | 10 |
| 1420 | 11 | 10 |
| 1421 | 9 | 10 |
| 1422 | 10 | 10 |
| 1423 | 11 | 10 |
| 1424 | 11 | 10 |
| 1425 | 10 | 10 |
| 1426 | 10 | 10 |
| 1427 | 8 | 10 |
| 1428 | 11 | 10 |
| 1429 | 11 | 10 |
| 1430 | 8 | 10 |
| 1431 | 9 | 10 |
| 1432 | 11 | 10 |
| 1433 | 44 | 40 |
| 1434 | 10 | 10 |
| 1435 | 8 | 10 |
| 1436 | 10 | 10 |
| 1437 | 10 | 10 |
| 1438 | 12 | 10 |
| 1439 | 9 | 10 |
| 1440 | 12 | 10 |
| 1441 | 9 | 10 |
| 1442 | 10 | 10 |
| 1443 | 10 | 10 |
| 1444 | 9 | 10 |
| 1447 | 12 | 10 |
| 1448 | 7 | 10 |
| 1449 | 10 | 10 |
| 1450 | 11 | 10 |
| 1451 | 13 | 10 |
| 1452 | 13 | 10 |
| 1453 | 8 | 10 |
| 1454 | 12 | 10 |
| 1455 | 10 | 10 |
| 1456 | 10 | 10 |
| 1457 | 12 | 10 |
| 1458 | 11 | 10 |
| 1459 | 4 | 10 |
| 1460 | 6 | 10 |
| 1461 | 5 | 10 |
| 1462 | 10 | 10 |
| 1463 | 12 | 10 |
| 1464 | 10 | 10 |
| 1465 | 10 | 10 |
| 1466 | 11 | 10 |
| 1467 | 9 | 10 |
| 1468 | 10 | 10 |
| 1469 | 9 | 10 |
| 1470 | 11 | 10 |
| 1471 | 12 | 10 |
| 1472 | 10 | 10 |
| 1473 | 7 | 10 |
| 1475 | 9 | 10 |
| 1476 | 12 | 10 |
| 1477 | 10 | 10 |
| 1478 | 3 | 10 |
| 1480 | 11 | 10 |
| 1481 | 10 | 10 |
| 1482 | 12 | 10 |
| 1483 | 11 | 10 |
| 1484 | 9 | 10 |
| 1485 | 12 | 10 |
| 1486 | 11 | 10 |
| 1487 | 10 | 10 |
| 1488 | 9 | 10 |
| 1489 | 10 | 10 |
| 1490 | 10 | 10 |
| 1491 | 10 | 10 |
| 1492 | 12 | 10 |
| 1493 | 13 | 10 |
| 1494 | 12 | 10 |
| 1495 | 10 | 10 |
| 1496 | 10 | 10 |
| 1498 | 7 | 10 |
| 1499 | 12 | 10 |
| 1500 | 10 | 10 |
| 1501 | 13 | 10 |
| 1502 | 13 | 10 |
| 1503 | 9 | 10 |
| 1504 | 8 | 10 |
| 1505 | 10 | 10 |
| 1506 | 10 | 10 |
| 1507 | 10 | 10 |
| 1508 | 5 | 10 |
| 1509 | 12 | 10 |
| 1510 | 12 | 10 |
| 1511 | 13 | 10 |
| 1512 | 11 | 10 |
| 1513 | 11 | 10 |
| 1514 | 12 | 10 |
| 1515 | 12 | 10 |
| 1516 | 11 | 10 |
| 1517 | 10 | 10 |
| 1518 | 12 | 10 |
| 1519 | 13 | 10 |
| 1520 | 8 | 10 |
| 1521 | 10 | 10 |
| 1522 | 11 | 10 |
| 1524 | 11 | 10 |
| 1525 | 10 | 10 |
| 1526 | 11 | 10 |
| 1527 | 9 | 10 |
| 1528 | 12 | 10 |
| 1529 | 11 | 10 |
| 1530 | 10 | 10 |
| 1531 | 12 | 10 |
| 1532 | 10 | 10 |
| 1533 | 10 | 10 |
| 1534 | 12 | 10 |
| 1535 | 12 | 10 |
| 1536 | 11 | 10 |
| 1537 | 9 | 10 |
| 1538 | 11 | 10 |
| 1539 | 12 | 10 |
| 1540 | 8 | 10 |
| 1541 | 10 | 10 |
| 1542 | 11 | 10 |
| 1543 | 12 | 10 |
| 1544 | 12 | 10 |
| 1545 | 13 | 10 |
| 1546 | 9 | 10 |
| 1547 | 10 | 10 |
| 1548 | 10 | 10 |
| 1549 | 10 | 10 |
| 1550 | 9 | 10 |
| 1551 | 10 | 10 |
| 1552 | 11 | 10 |
| 1553 | 8 | 10 |
| 1554 | 10 | 10 |
| 1555 | 7 | 10 |
| 1556 | 9 | 10 |
| 1557 | 12 | 10 |
| 1558 | 8 | 10 |
| 1559 | 9 | 10 |
| 1560 | 12 | 10 |
| 1561 | 12 | 10 |
| 1562 | 13 | 10 |
| 1563 | 10 | 10 |
| 1564 | 10 | 10 |
| 1565 | 11 | 10 |
| 1566 | 13 | 10 |
| 1567 | 12 | 10 |
| 1568 | 12 | 10 |
| 1569 | 11 | 10 |
| 1570 | 11 | 10 |
| 1571 | 9 | 10 |
| 1572 | 11 | 10 |
| 1573 | 7 | 10 |
| 1574 | 12 | 10 |
| 1575 | 11 | 10 |
| 1576 | 10 | 10 |
| 1577 | 10 | 10 |
| 1578 | 11 | 10 |
| 1579 | 7 | 10 |
| 1580 | 9 | 10 |
| 1581 | 11 | 10 |
| 1582 | 11 | 10 |
| 1583 | 5 | 10 |
| 1584 | 11 | 10 |
| 1585 | 11 | 10 |
| 1586 | 12 | 10 |
| 1587 | 8 | 10 |
| 1588 | 12 | 10 |
| 1589 | 11 | 10 |
| 1590 | 11 | 10 |
| 1591 | 10 | 10 |
| 1592 | 12 | 10 |
| 1593 | 11 | 10 |
| 1594 | 10 | 10 |
| 1595 | 10 | 10 |
| 1596 | 12 | 10 |
| 1597 | 11 | 10 |
| 1599 | 12 | 10 |
| 1600 | 11 | 10 |
| 1601 | 3 | 10 |
| 1602 | 11 | 10 |
| 1603 | 8 | 10 |
| 1604 | 9 | 10 |
| 1606 | 9 | 10 |
| 1607 | 12 | 10 |
| 1608 | 7 | 10 |
| 1609 | 14 | 10 |
| 1610 | 9 | 10 |
| 1611 | 10 | 10 |
| 1612 | 10 | 10 |
| 1613 | 11 | 10 |
| 1614 | 11 | 10 |
| 1615 | 10 | 10 |
| 1616 | 11 | 10 |
| 1617 | 11 | 10 |
| 1619 | 5 | 10 |
| 1620 | 12 | 10 |
| 1621 | 11 | 10 |
| 1622 | 12 | 10 |
| 1623 | 11 | 10 |
| 1624 | 5 | 10 |
| 1625 | 13 | 10 |
| 1626 | 11 | 10 |
| 1627 | 10 | 10 |
| 1628 | 12 | 10 |
| 1629 | 4 | 10 |
| 1630 | 12 | 10 |
| 1631 | 10 | 10 |
| 1632 | 10 | 10 |
| 1633 | 12 | 10 |
| 1634 | 143 | 130 |
| 1635 | 121 | 110 |
| 1636 | 6 | 10 |
| 1637 | 9 | 10 |
| 1638 | 10 | 10 |
| 1639 | 10 | 10 |
| 1640 | 12 | 10 |
| 1641 | 11 | 10 |
| 1642 | 10 | 10 |
| 1643 | 10 | 10 |
| 1644 | 10 | 10 |
| 1645 | 5 | 10 |
| 1646 | 9 | 10 |
| 1647 | 12 | 10 |
| 1648 | 9 | 10 |
| 1649 | 11 | 10 |
| 1650 | 11 | 10 |
| 1651 | 11 | 10 |
| 1652 | 11 | 10 |
| 1653 | 8 | 10 |
| 1654 | 10 | 10 |
| 1655 | 11 | 10 |
| 1656 | 10 | 10 |
| 1657 | 9 | 10 |
| 1658 | 10 | 10 |
| 1659 | 12 | 10 |
| 1660 | 9 | 10 |
| 1661 | 10 | 10 |
| 1662 | 7 | 11 |
| 1664 | 12 | 10 |
| 1665 | 9 | 10 |
| 1666 | 12 | 10 |
| 1667 | 11 | 10 |
| 1668 | 12 | 10 |
| 1669 | 8 | 10 |
| 1670 | 7 | 10 |
| 1671 | 11 | 10 |
| 1672 | 9 | 10 |
| 1673 | 9 | 10 |
| 1674 | 9 | 10 |
| 1675 | 11 | 10 |
| 1676 | 12 | 10 |
| 1677 | 11 | 10 |
| 1678 | 10 | 10 |
| 1679 | 11 | 10 |
| 1680 | 5 | 10 |
| 1681 | 12 | 10 |
| 1682 | 10 | 10 |
| 1683 | 11 | 10 |
| 1684 | 7 | 10 |
| 1685 | 12 | 10 |
| 1686 | 12 | 10 |
| 1687 | 8 | 10 |
| 1688 | 12 | 10 |
| 1690 | 9 | 10 |
| 1691 | 11 | 10 |
| 1692 | 3 | 10 |
| 1693 | 12 | 10 |
| 1694 | 11 | 10 |
| 1695 | 9 | 10 |
| 1696 | 10 | 10 |
| 1697 | 11 | 10 |
| 1698 | 11 | 10 |
| 1699 | 9 | 10 |
| 1700 | 9 | 10 |
| 1701 | 4 | 10 |
| 1702 | 10 | 10 |
| 1703 | 11 | 10 |
| 1704 | 9 | 10 |
| 1705 | 12 | 10 |
| 1706 | 9 | 10 |
| 1707 | 10 | 10 |
| 1708 | 6 | 10 |
| 1709 | 9 | 10 |
| 1710 | 8 | 10 |
| 1711 | 12 | 10 |
| 1712 | 26 | 10 |
| 1713 | 10 | 10 |
| 1714 | 11 | 10 |
| 1715 | 10 | 10 |
| 1716 | 12 | 10 |
| 1717 | 11 | 10 |
| 1718 | 10 | 10 |
| 1719 | 12 | 10 |
| 1720 | 10 | 10 |
| 1721 | 10 | 10 |
| 1722 | 9 | 10 |
| 1723 | 11 | 10 |
| 1724 | 12 | 10 |
| 1725 | 9 | 10 |
| 1726 | 10 | 10 |
| 1727 | 5 | 10 |
| 1728 | 10 | 10 |
| 1729 | 11 | 10 |
| 1730 | 7 | 10 |
| 1731 | 10 | 10 |
| 1732 | 13 | 10 |
| 1733 | 10 | 10 |
| 1734 | 9 | 10 |
| 1735 | 8 | 10 |
| 1736 | 8 | 10 |
| 1737 | 7 | 10 |
| 1738 | 11 | 10 |
| 1739 | 7 | 10 |
| 1740 | 8 | 10 |
| 1741 | 9 | 10 |
| 1742 | 11 | 10 |
| 1743 | 10 | 10 |
| 1744 | 11 | 10 |
| 1745 | 8 | 10 |
| 1746 | 10 | 10 |
| 1747 | 12 | 10 |
| 1748 | 11 | 10 |
| 1749 | 9 | 10 |
| 1750 | 11 | 10 |
| 1751 | 12 | 10 |
| 1752 | 11 | 10 |
| 1753 | 12 | 10 |
| 1754 | 7 | 10 |
| 1755 | 11 | 10 |
| 1756 | 8 | 10 |
| 1757 | 10 | 10 |
| 1758 | 10 | 10 |
| 1759 | 6 | 10 |
| 1760 | 10 | 10 |
| 1761 | 2 | 10 |
| 1762 | 10 | 10 |
| 1763 | 10 | 10 |
| 1764 | 2 | 10 |
| 1765 | 10 | 10 |
| 1766 | 12 | 10 |
| 1767 | 12 | 10 |
| 1768 | 11 | 10 |
| 1769 | 10 | 10 |
| 1770 | 12 | 10 |
| 1771 | 10 | 10 |
| 1772 | 10 | 10 |
| 1773 | 9 | 10 |
| 1775 | 12 | 10 |
| 1776 | 11 | 10 |
| 1777 | 10 | 10 |
| 1778 | 9 | 10 |
| 1779 | 144 | 120 |
| 1780 | 10 | 10 |
| 1781 | 9 | 10 |
| 1782 | 11 | 10 |
| 1783 | 9 | 10 |
| 1784 | 12 | 10 |
| 1785 | 11 | 10 |
| 1786 | 10 | 10 |
| 1787 | 6 | 10 |
| 1788 | 10 | 10 |
| 1789 | 12 | 10 |
| 1790 | 9 | 10 |
| 1791 | 12 | 10 |
| 1792 | 9 | 10 |
| 1793 | 9 | 10 |
| 1794 | 10 | 10 |
| 1795 | 10 | 10 |
| 1796 | 5 | 10 |
| 1797 | 10 | 10 |
| 1798 | 11 | 10 |
| 1799 | 9 | 10 |
| 1800 | 11 | 10 |
| 1801 | 10 | 10 |
| 1802 | 8 | 10 |
| 1803 | 6 | 10 |
| 1804 | 12 | 10 |
| 1805 | 9 | 10 |
| 1806 | 8 | 10 |
| 1807 | 10 | 10 |
| 1808 | 5 | 10 |
| 1809 | 10 | 10 |
| 1810 | 11 | 10 |
| 1811 | 12 | 10 |
| 1812 | 9 | 10 |
| 1813 | 10 | 10 |
| 1814 | 13 | 10 |
| 1815 | 12 | 10 |
| 1816 | 12 | 10 |
| 1817 | 9 | 10 |
| 1818 | 11 | 10 |
| 1820 | 5 | 10 |
| 1821 | 8 | 10 |
| 1822 | 8 | 10 |
| 1823 | 12 | 10 |
| 1824 | 9 | 10 |
| 1825 | 11 | 10 |
| 1826 | 11 | 10 |
| 1827 | 10 | 10 |
| 1828 | 10 | 10 |
| 1829 | 8 | 10 |
| 1830 | 10 | 10 |
| 1831 | 9 | 10 |
| 1832 | 10 | 10 |
| 1833 | 10 | 10 |
| 1834 | 8 | 10 |
| 1835 | 11 | 10 |
| 1836 | 3 | 10 |
| 1837 | 9 | 10 |
| 1838 | 10 | 10 |
| 1839 | 6 | 10 |
| 1840 | 10 | 10 |
| 1841 | 11 | 10 |
| 1842 | 11 | 10 |
| 1843 | 88 | 80 |
| 1845 | 10 | 10 |
| 1846 | 10 | 10 |
| 1847 | 11 | 10 |
| 1848 | 10 | 10 |
| 1849 | 11 | 10 |
| 1850 | 12 | 10 |
| 1851 | 12 | 10 |
| 1852 | 11 | 10 |
| 1853 | 10 | 10 |
| 1854 | 11 | 10 |
| 1855 | 10 | 10 |
| 1856 | 10 | 10 |
| 1857 | 12 | 10 |
| 1858 | 13 | 10 |
| 1859 | 11 | 10 |
| 1860 | 10 | 10 |
| 1861 | 5 | 10 |
| 1862 | 12 | 10 |
| 1863 | 13 | 10 |
| 1864 | 12 | 10 |
| 1865 | 13 | 10 |
| 1866 | 13 | 10 |
| 1867 | 12 | 10 |
| 1868 | 10 | 10 |
| 1869 | 1 | 10 |
| 1870 | 12 | 10 |
| 1871 | 10 | 10 |
| 1872 | 7 | 10 |
| 1873 | 9 | 10 |
| 1874 | 5 | 10 |
| 1875 | 10 | 10 |
| 1876 | 8 | 10 |
| 1877 | 9 | 10 |
| 1878 | 11 | 10 |
| 1879 | 10 | 10 |
| 1880 | 10 | 10 |
| 1881 | 12 | 10 |
| 1882 | 13 | 10 |
| 1883 | 10 | 10 |
| 1884 | 11 | 10 |
| 1885 | 13 | 10 |
| 1886 | 13 | 10 |
| 1887 | 9 | 10 |
| 1888 | 8 | 10 |
| 1889 | 11 | 10 |
| 1890 | 12 | 10 |
| 1891 | 10 | 10 |
| 1892 | 12 | 10 |
| 1893 | 12 | 10 |
| 1894 | 10 | 10 |
| 1896 | 11 | 10 |
| 1897 | 10 | 10 |
| 1898 | 3 | 10 |
| 1899 | 9 | 10 |
| 1900 | 10 | 10 |
| 1901 | 5 | 10 |
| 1902 | 11 | 10 |
| 1903 | 12 | 10 |
| 1904 | 5 | 10 |
| 1906 | 13 | 10 |
| 1907 | 10 | 10 |
| 1908 | 9 | 10 |
| 1909 | 12 | 10 |
| 1910 | 10 | 10 |
| 1911 | 10 | 10 |
| 1912 | 8 | 10 |
| 1913 | 10 | 10 |
| 1915 | 8 | 10 |
| 1916 | 12 | 10 |
| 1917 | 11 | 10 |
| 1918 | 10 | 10 |
| 1919 | 8 | 10 |
| 1920 | 2 | 10 |
| 1921 | 9 | 10 |
| 1922 | 10 | 10 |
| 1923 | 11 | 10 |
| 1924 | 11 | 10 |
| 1925 | 5 | 10 |
| 1926 | 10 | 10 |
| 1927 | 10 | 10 |
| 1928 | 3 | 10 |
| 1929 | 12 | 10 |
| 1930 | 12 | 10 |
| 1931 | 9 | 10 |
| 1932 | 10 | 10 |
| 1933 | 10 | 10 |
| 1934 | 11 | 10 |
| 1935 | 10 | 10 |
| 1936 | 10 | 10 |
| 1937 | 11 | 10 |
| 1938 | 3 | 10 |
| 1939 | 10 | 10 |
| 1941 | 4 | 10 |
| 1942 | 10 | 10 |
| 1943 | 12 | 10 |
| 1944 | 12 | 10 |
| 1945 | 10 | 10 |
| 1946 | 8 | 10 |
| 1947 | 3 | 10 |
| 1948 | 8 | 10 |
| 1949 | 11 | 10 |
| 1950 | 9 | 10 |
| 1951 | 11 | 10 |
| 1952 | 13 | 10 |
| 1953 | 12 | 10 |
| 1954 | 10 | 10 |
| 1955 | 10 | 10 |
| 1956 | 7 | 10 |
| 1957 | 11 | 10 |
| 1958 | 8 | 10 |
| 1959 | 7 | 10 |
| 1960 | 11 | 10 |
| 1961 | 8 | 10 |
| 1962 | 11 | 10 |
| 1963 | 12 | 10 |
| 1964 | 9 | 10 |
| 1965 | 7 | 10 |
| 1966 | 11 | 10 |
| 1967 | 10 | 10 |
| 1968 | 11 | 10 |
| 1969 | 10 | 10 |
| 1970 | 8 | 10 |
| 1971 | 11 | 10 |
| 1972 | 6 | 10 |
| 1973 | 10 | 10 |
| 1974 | 8 | 10 |
| 1975 | 12 | 10 |
| 1976 | 8 | 10 |
| 1977 | 10 | 10 |
| 1978 | 9 | 10 |
| 1979 | 5 | 10 |
| 1980 | 10 | 10 |
| 1981 | 7 | 10 |
| 1982 | 11 | 10 |
| 1983 | 10 | 10 |
| 1984 | 9 | 10 |
| 1985 | 11 | 10 |
| 1986 | 6 | 10 |
| 1987 | 8 | 10 |
| 1988 | 10 | 10 |
| 1989 | 9 | 10 |
| 1990 | 9 | 10 |
| 1991 | 12 | 10 |
| 1992 | 6 | 10 |
| 1993 | 9 | 10 |
| 1994 | 11 | 10 |
| 1995 | 9 | 10 |
| 1996 | 10 | 10 |
| 1997 | 8 | 10 |
| 1998 | 7 | 10 |
| 1999 | 10 | 10 |
| 2000 | 10 | 10 |
| 2001 | 10 | 10 |
| 2002 | 12 | 10 |
| 2003 | 8 | 10 |
| 2004 | 12 | 10 |
| 2005 | 11 | 10 |
| 2006 | 10 | 10 |
| 2007 | 10 | 10 |
| 2008 | 8 | 10 |
| 2009 | 11 | 10 |
| 2010 | 10 | 10 |
| 2011 | 12 | 10 |
| 2012 | 7 | 10 |
| 2013 | 5 | 10 |
| 2014 | 9 | 10 |
| 2015 | 9 | 10 |
| 2016 | 10 | 10 |
| 2017 | 8 | 10 |
| 2018 | 12 | 10 |
| 2019 | 11 | 10 |
| 2020 | 9 | 10 |
| 2021 | 11 | 10 |
| 2022 | 7 | 10 |
| 2023 | 10 | 10 |
| 2024 | 11 | 10 |
| 2025 | 11 | 10 |
| 2026 | 5 | 10 |
| 2027 | 10 | 10 |
| 2028 | 10 | 10 |
| 2029 | 8 | 10 |
| 2030 | 13 | 10 |
| 2031 | 10 | 10 |
| 2032 | 9 | 10 |
| 2033 | 6 | 10 |
| 2034 | 11 | 10 |
| 2035 | 11 | 10 |
| 2036 | 13 | 10 |
| 2037 | 13 | 10 |
| 2039 | 10 | 10 |
| 2040 | 6 | 10 |
| 2041 | 10 | 10 |
| 2042 | 8 | 10 |
| 2043 | 9 | 10 |
| 2044 | 6 | 10 |
| 2045 | 10 | 10 |
| 2046 | 10 | 10 |
| 2047 | 9 | 10 |
| 2048 | 8 | 10 |
| 2049 | 11 | 10 |
| 2050 | 11 | 10 |
| 2051 | 8 | 10 |
| 2052 | 10 | 10 |
| 2053 | 11 | 10 |
| 2054 | 7 | 10 |
| 2055 | 11 | 10 |
| 2056 | 9 | 10 |
| 2057 | 10 | 10 |
| 2058 | 9 | 10 |
| 2059 | 10 | 10 |
| 2060 | 12 | 10 |
| 2061 | 10 | 10 |
| 2062 | 8 | 10 |
| 2063 | 5 | 10 |
| 2064 | 11 | 10 |
| 2065 | 12 | 10 |
| 2066 | 9 | 10 |
| 2067 | 9 | 10 |
| 2068 | 10 | 10 |
| 2069 | 8 | 10 |
| 2070 | 4 | 10 |
| 2071 | 6 | 10 |
| 2072 | 8 | 10 |
| 2073 | 12 | 10 |
| 2074 | 420 | 10 |
| 2075 | 10 | 10 |
| 2076 | 4 | 10 |
| 2077 | 7 | 10 |
| 2078 | 10 | 10 |
| 2079 | 2 | 10 |
| 2080 | 12 | 10 |
| 2081 | 10 | 10 |
| 2082 | 10 | 10 |
| 2083 | 10 | 10 |
| 2084 | 11 | 10 |
| 2085 | 10 | 10 |
| 2086 | 10 | 10 |
| 2087 | 11 | 10 |
| 2088 | 7 | 10 |
| 2089 | 9 | 10 |
| 2090 | 8 | 10 |
| 2091 | 1 | 10 |
| 2092 | 5 | 10 |
| 2093 | 7 | 10 |
| 2094 | 10 | 10 |
| 2095 | 10 | 10 |
| 2096 | 9 | 10 |
| 2097 | 8 | 10 |
| 2098 | 10 | 10 |
| 2099 | 12 | 10 |
| 2100 | 6 | 10 |
| 2101 | 8 | 10 |
| 2102 | 8 | 10 |
| 2103 | 8 | 10 |
| 2104 | 10 | 10 |
| 2105 | 10 | 10 |
| 2106 | 10 | 10 |
| 2107 | 7 | 10 |
| 2108 | 11 | 10 |
| 2109 | 5 | 10 |
| 2110 | 10 | 10 |
| 2111 | 11 | 10 |
| 2112 | 10 | 10 |
| 2113 | 11 | 10 |
| 2114 | 10 | 10 |
| 2115 | 11 | 10 |
| 2116 | 9 | 10 |
| 2117 | 12 | 10 |
| 2118 | 10 | 10 |
| 2119 | 6 | 10 |
| 2120 | 12 | 10 |
| 2121 | 10 | 10 |
| 2122 | 10 | 10 |
| 2123 | 8 | 10 |
| 2124 | 12 | 10 |
| 2125 | 9 | 10 |
| 2126 | 10 | 10 |
| 2127 | 11 | 10 |
| 2128 | 9 | 10 |
| 2129 | 11 | 10 |
| 2130 | 9 | 10 |
| 2131 | 10 | 10 |
| 2132 | 10 | 10 |
| 2133 | 10 | 10 |
| 2134 | 5 | 10 |
| 2135 | 11 | 10 |
| 2136 | 3 | 10 |
| 2137 | 11 | 10 |
| 2138 | 10 | 10 |
| 2139 | 5 | 10 |
| 2140 | 10 | 10 |
| 2141 | 9 | 10 |
| 2142 | 10 | 10 |
| 2143 | 10 | 10 |
| 2144 | 11 | 10 |
| 2145 | 12 | 10 |
| 2146 | 10 | 10 |
| 2147 | 10 | 10 |
| 2148 | 8 | 10 |
| 2150 | 10 | 10 |
| 2151 | 9 | 10 |
| 2152 | 8 | 10 |
| 2153 | 5 | 10 |
| 2154 | 12 | 10 |
| 2155 | 10 | 10 |
| 2156 | 10 | 10 |
| 2157 | 6 | 10 |
| 2158 | 10 | 10 |
| 2159 | 7 | 10 |
| 2160 | 9 | 10 |
| 2161 | 10 | 10 |
| 2162 | 10 | 10 |
| 2163 | 6 | 10 |
| 2164 | 10 | 10 |
| 2165 | 10 | 10 |
| 2166 | 10 | 10 |
| 2167 | 11 | 10 |
| 2168 | 8 | 10 |
| 2169 | 10 | 10 |
| 2170 | 10 | 10 |
| 2171 | 12 | 10 |
| 2172 | 13 | 10 |
| 2173 | 11 | 10 |
| 2174 | 8 | 10 |
| 2175 | 10 | 10 |
| 2176 | 9 | 10 |
| 2177 | 10 | 10 |
| 2178 | 10 | 10 |
| 2179 | 12 | 10 |
| 2180 | 11 | 10 |
| 2181 | 5 | 10 |
| 2182 | 8 | 10 |
| 2183 | 3 | 10 |
| 2184 | 7 | 10 |
| 2185 | 9 | 10 |
| 2186 | 4 | 10 |
| 2187 | 12 | 10 |
| 2188 | 11 | 10 |
| 2190 | 10 | 10 |
| 2191 | 10 | 10 |
| 2192 | 9 | 10 |
| 2193 | 11 | 10 |
| 2194 | 11 | 10 |
| 2195 | 11 | 10 |
| 2196 | 11 | 10 |
| 2197 | 10 | 10 |
| 2198 | 7 | 10 |
| 2199 | 10 | 10 |
| 2200 | 11 | 10 |
| 2201 | 11 | 10 |
| 2202 | 3 | 10 |
| 2203 | 10 | 10 |
| 2204 | 10 | 10 |
| 2205 | 10 | 10 |
| 2206 | 5 | 10 |
| 2207 | 9 | 10 |
| 2208 | 10 | 10 |
| 2209 | 10 | 10 |
| 2210 | 10 | 10 |
| 2211 | 7 | 10 |
| 2212 | 13 | 10 |
| 2213 | 11 | 10 |
| 2214 | 10 | 10 |
| 2215 | 10 | 10 |
| 2216 | 8 | 10 |
| 2217 | 12 | 10 |
| 2218 | 10 | 10 |
| 2219 | 8 | 10 |
| 2220 | 9 | 10 |
| 2221 | 11 | 10 |
| 2222 | 4 | 10 |
| 2223 | 9 | 10 |
| 2224 | 10 | 10 |
| 2225 | 11 | 10 |
| 2226 | 10 | 10 |
| 2227 | 10 | 10 |
| 2228 | 13 | 10 |
| 2229 | 8 | 10 |
| 2230 | 10 | 10 |
| 2231 | 10 | 10 |
| 2232 | 10 | 10 |
| 2233 | 8 | 10 |
| 2234 | 12 | 10 |
| 2235 | 7 | 10 |
| 2236 | 9 | 10 |
| 2237 | 2 | 10 |
| 2238 | 6 | 10 |
| 2239 | 3 | 10 |
| 2240 | 9 | 10 |
| 2241 | 10 | 10 |
| 2242 | 5 | 10 |
| 2243 | 9 | 10 |
| 2244 | 11 | 10 |
| 2245 | 10 | 10 |
| 2246 | 2 | 10 |
| 2247 | 10 | 10 |
| 2248 | 10 | 10 |
| 2249 | 9 | 10 |
| 2250 | 12 | 10 |
| 2251 | 10 | 10 |
| 2252 | 12 | 10 |
| 2253 | 8 | 10 |
| 2254 | 9 | 10 |
| 2255 | 8 | 10 |
| 2256 | 9 | 10 |
| 2257 | 11 | 10 |
| 2258 | 7 | 10 |
| 2261 | 1 | 10 |
| 2262 | 9 | 10 |
| 2263 | 10 | 10 |
| 2264 | 9 | 10 |
| 2265 | 8 | 10 |
| 2266 | 10 | 10 |
| 2267 | 12 | 10 |
| 2268 | 8 | 10 |
| 2269 | 12 | 10 |
| 2270 | 11 | 10 |
| 2271 | 9 | 10 |
| 2272 | 7 | 10 |
| 2273 | 11 | 10 |
| 2274 | 7 | 10 |
| 2275 | 11 | 10 |
| 2276 | 6 | 10 |
| 2277 | 10 | 10 |
| 2278 | 12 | 10 |
| 2279 | 7 | 10 |
| 2280 | 8 | 10 |
| 2281 | 10 | 10 |
| 2282 | 9 | 10 |
| 2283 | 11 | 10 |
| 2284 | 12 | 10 |
| 2285 | 10 | 10 |
| 2286 | 10 | 10 |
| 2287 | 8 | 10 |
| 2288 | 4 | 10 |
| 2289 | 9 | 10 |
| 2290 | 10 | 10 |
| 2291 | 10 | 10 |
| 2292 | 11 | 10 |
| 2293 | 12 | 10 |
| 2294 | 10 | 10 |
| 2295 | 10 | 10 |
| 2296 | 7 | 10 |
| 2297 | 10 | 10 |
| 2299 | 8 | 10 |
| 2300 | 10 | 10 |
| 2301 | 12 | 10 |
| 2302 | 9 | 10 |
| 2303 | 10 | 10 |
| 2304 | 11 | 10 |
| 2305 | 3 | 10 |
| 2306 | 10 | 10 |
| 2307 | 12 | 10 |
| 2308 | 9 | 10 |
| 2309 | 8 | 10 |
| 2310 | 2 | 10 |
| 2311 | 10 | 10 |
| 2312 | 5 | 10 |
| 2313 | 10 | 10 |
| 2314 | 8 | 10 |
| 2315 | 8 | 10 |
| 2316 | 4 | 10 |
| 2317 | 9 | 10 |
| 2318 | 10 | 10 |
| 2319 | 9 | 10 |
| 2320 | 7 | 10 |
| 2321 | 10 | 10 |
| 2322 | 6 | 10 |
| 2323 | 7 | 10 |
| 2324 | 12 | 10 |
| 2325 | 10 | 10 |
| 2326 | 2 | 10 |
| 2327 | 7 | 10 |
| 2328 | 9 | 10 |
| 2329 | 11 | 10 |
| 2330 | 6 | 10 |
| 2331 | 8 | 10 |
| 2332 | 10 | 10 |
| 2333 | 9 | 10 |
| 2334 | 3 | 10 |
| 2335 | 1 | 2 |
| 2336 | 11 | 10 |
| 2337 | 10 | 10 |
| 2338 | 1 | 10 |
| 2339 | 11 | 10 |
| 2340 | 8 | 10 |
| 2341 | 9 | 10 |
| 2342 | 6 | 10 |
| 2343 | 10 | 10 |
| 2344 | 9 | 10 |
| 2345 | 10 | 10 |
| 2346 | 8 | 10 |
| 2347 | 9 | 10 |
| 2348 | 10 | 10 |
| 2349 | 2 | 10 |
| 2350 | 10 | 10 |
| 2351 | 5 | 10 |
| 2352 | 6 | 10 |
| 2353 | 9 | 10 |
| 2354 | 7 | 10 |
| 2355 | 8 | 10 |
archive_clean[['rating_numerator', 'rating_denominator']] = archive_clean['text_ratings'].str.split('/', expand=True)
archive_clean[['rating_numerator', 'rating_denominator']] = archive_clean[['rating_numerator', 'rating_denominator']].astype(int)
archive_clean.drop('text_ratings', axis=1, inplace=True)
archive_clean[['rating_numerator', 'rating_denominator']].describe()
| rating_numerator | rating_denominator | |
|---|---|---|
| count | 2117.000000 | 2117.000000 |
| mean | 12.246103 | 10.501181 |
| std | 40.275298 | 7.105845 |
| min | 0.000000 | 2.000000 |
| 25% | 10.000000 | 10.000000 |
| 50% | 11.000000 | 10.000000 |
| 75% | 12.000000 | 10.000000 |
| max | 1776.000000 | 170.000000 |
archive_clean['rating_numerator'].idxmax()
979
archive_clean['text'][979]
"This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh"
archive_clean['rating_denominator'].idxmax()
1120
archive_clean['text'][1120]
'Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv'
Dog stages is an observation should be put into a column
archive_clean.columns
Index(['tweet_id', 'timestamp', 'source', 'text', 'expanded_urls',
'rating_numerator', 'rating_denominator', 'name', 'doggo', 'floofer',
'pupper', 'puppo'],
dtype='object')
archive_clean['dog_stage'] = archive_clean[['doggo', 'floofer', 'pupper', 'puppo']].replace(np.nan, '').sum(1)
archive_clean['dog_stage'] = archive_clean['dog_stage'].replace('', np.nan)
archive_clean.drop(['doggo', 'floofer', 'pupper', 'puppo'], axis=1, inplace=True)
archive_clean['dog_stage'].value_counts(dropna=False)
NaN 1779 pupper 222 doggo 72 puppo 23 doggopupper 10 floofer 9 doggofloofer 1 doggopuppo 1 Name: dog_stage, dtype: int64
archive_clean.head()
| tweet_id | timestamp | source | text | expanded_urls | rating_numerator | rating_denominator | name | dog_stage | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56 | Twitter for iPhone | This is Phineas. He's a mystical boy. Only eve... | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | NaN |
| 1 | 892177421306343426 | 2017-08-01 00:17:27 | Twitter for iPhone | This is Tilly. She's just checking pup on you.... | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | NaN |
| 2 | 891815181378084864 | 2017-07-31 00:18:03 | Twitter for iPhone | This is Archie. He is a rare Norwegian Pouncin... | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | NaN |
| 3 | 891689557279858688 | 2017-07-30 15:58:51 | Twitter for iPhone | This is Darla. She commenced a snooze mid meal... | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | NaN |
| 4 | 891327558926688256 | 2017-07-29 16:00:24 | Twitter for iPhone | This is Franklin. He would like you to stop ca... | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | NaN |
api dataframe should be merged to archive dataframe to have 1 dataframe(each type of observation forms a table)
api_df.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 2327 entries, 0 to 2326 Data columns (total 3 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 tweet_id 2327 non-null object 1 retweet_count 2327 non-null int64 2 favorite_count 2327 non-null int64 dtypes: int64(2), object(1) memory usage: 54.7+ KB
to merge convert archive_clean tweet_id to object data type)
archive_clean['tweet_id'] = archive_clean['tweet_id'].apply(str)
df = archive_clean.merge(api_df, how='inner', on='tweet_id')
df.head()
| tweet_id | timestamp | source | text | expanded_urls | rating_numerator | rating_denominator | name | dog_stage | retweet_count | favorite_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56 | Twitter for iPhone | This is Phineas. He's a mystical boy. Only eve... | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | NaN | 7001 | 33801 |
| 1 | 892177421306343426 | 2017-08-01 00:17:27 | Twitter for iPhone | This is Tilly. She's just checking pup on you.... | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | NaN | 5299 | 29301 |
| 2 | 891815181378084864 | 2017-07-31 00:18:03 | Twitter for iPhone | This is Archie. He is a rare Norwegian Pouncin... | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | NaN | 3477 | 22042 |
| 3 | 891689557279858688 | 2017-07-30 15:58:51 | Twitter for iPhone | This is Darla. She commenced a snooze mid meal... | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | NaN | 7223 | 36920 |
| 4 | 891327558926688256 | 2017-07-29 16:00:24 | Twitter for iPhone | This is Franklin. He would like you to stop ca... | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | NaN | 7754 | 35299 |
df.shape
(2109, 11)
only take the true predicted image, with high confidence
image.head()
| tweet_id | jpg_url | img_num | p1 | p1_conf | p1_dog | p2 | p2_conf | p2_dog | p3 | p3_conf | p3_dog | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 666020888022790149 | https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg | 1 | Welsh_springer_spaniel | 0.465074 | True | collie | 0.156665 | True | Shetland_sheepdog | 0.061428 | True |
| 1 | 666029285002620928 | https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg | 1 | redbone | 0.506826 | True | miniature_pinscher | 0.074192 | True | Rhodesian_ridgeback | 0.072010 | True |
| 2 | 666033412701032449 | https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg | 1 | German_shepherd | 0.596461 | True | malinois | 0.138584 | True | bloodhound | 0.116197 | True |
| 3 | 666044226329800704 | https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg | 1 | Rhodesian_ridgeback | 0.408143 | True | redbone | 0.360687 | True | miniature_pinscher | 0.222752 | True |
| 4 | 666049248165822465 | https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg | 1 | miniature_pinscher | 0.560311 | True | Rottweiler | 0.243682 | True | Doberman | 0.154629 | True |
# prediction order were in order of confidence of model prediction
for index,row in image_clean.iterrows():
if row['p1_dog'] == True:
image_clean.at[index,'prediction_conf'] = row['p1_conf']
image_clean.at[index,'dog_breed_pred'] = row['p1']
elif row['p2_dog'] == True:
image_clean.at[index,'prediction_conf'] = row['p2_conf']
image_clean.at[index,'dog_breed_pred'] = row['p2']
elif row['p3_dog'] == True:
image_clean.at[index,'prediction_conf'] = row['p3_conf']
image_clean.at[index,'dog_breed_pred'] = row['p3']
image_clean = image_clean[['tweet_id', 'jpg_url','img_num', 'dog_breed_pred', 'prediction_conf']]
merge image data into former merged dataframe
image_clean.shape
(2075, 5)
image_clean['tweet_id'] = image_clean['tweet_id'].apply(str)
final_df = df.merge(image_clean, how='inner', on='tweet_id')
final_df.head()
| tweet_id | timestamp | source | text | expanded_urls | rating_numerator | rating_denominator | name | dog_stage | retweet_count | favorite_count | jpg_url | img_num | dog_breed_pred | prediction_conf | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 892420643555336193 | 2017-08-01 16:23:56 | Twitter for iPhone | This is Phineas. He's a mystical boy. Only eve... | https://twitter.com/dog_rates/status/892420643... | 13 | 10 | Phineas | NaN | 7001 | 33801 | https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg | 1 | NaN | NaN |
| 1 | 892177421306343426 | 2017-08-01 00:17:27 | Twitter for iPhone | This is Tilly. She's just checking pup on you.... | https://twitter.com/dog_rates/status/892177421... | 13 | 10 | Tilly | NaN | 5299 | 29301 | https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg | 1 | Chihuahua | 0.323581 |
| 2 | 891815181378084864 | 2017-07-31 00:18:03 | Twitter for iPhone | This is Archie. He is a rare Norwegian Pouncin... | https://twitter.com/dog_rates/status/891815181... | 12 | 10 | Archie | NaN | 3477 | 22042 | https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg | 1 | Chihuahua | 0.716012 |
| 3 | 891689557279858688 | 2017-07-30 15:58:51 | Twitter for iPhone | This is Darla. She commenced a snooze mid meal... | https://twitter.com/dog_rates/status/891689557... | 13 | 10 | Darla | NaN | 7223 | 36920 | https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg | 1 | Labrador_retriever | 0.168086 |
| 4 | 891327558926688256 | 2017-07-29 16:00:24 | Twitter for iPhone | This is Franklin. He would like you to stop ca... | https://twitter.com/dog_rates/status/891327558... | 12 | 10 | Franklin | NaN | 7754 | 35299 | https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg | 2 | basset | 0.555712 |
final_df.shape
(1986, 15)
final_df.to_csv('twitter_archive_master.csv', index=False)